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 set: