-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement makePrivate and remove non-existent php-cs-fixer config value #110
Implement makePrivate and remove non-existent php-cs-fixer config value #110
Conversation
2da38cf
to
a3becf6
Compare
@@ -39,7 +39,6 @@ | |||
], | |||
'single_quote' => true, | |||
'ternary_operator_spaces' => true, | |||
'trailing_comma_in_multiline' => ['elements' => ['arrays']], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why you say non-existent config value? https://cs.symfony.com/doc/rules/control_structure/trailing_comma_in_multiline.html
|
||
class ParameterBuilder extends Param | ||
{ | ||
protected string $docBlockType = ''; | ||
|
||
protected int $flags = 0; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this already exists in parent class
@@ -55,4 +58,9 @@ public function setDocBlockType(string $docBlockType): self | |||
|
|||
return $this; | |||
} | |||
|
|||
public function makePrivate(): self { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
also present in parent class
Oops, forgot to run |
…fig value