
protected_to_private
¶Converts protected
variables and methods to private
where possible.
--- Original
+++ New
<?php
final class Sample
{
- protected $a;
+ private $a;
- protected function test()
+ private function test()
{
}
}
The rule is part of the following rule sets:
Using the @PhpCsFixer rule set will enable the protected_to_private
rule.
Using the @Symfony rule set will enable the protected_to_private
rule.