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