| Total Complexity | 9 |
| Total Lines | 39 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 20 | $testClass = new class () |
||
| 21 | { |
||
| 22 | use UsesPHPMetaDataTrait; |
||
| 23 | |||
| 24 | protected static function setCustomRepositoryClass(ClassMetadataBuilder $builder) |
||
|
|
|||
| 25 | { |
||
| 26 | // TODO: Implement setCustomRepositoryClass() method. |
||
| 27 | } |
||
| 28 | |||
| 29 | public function getThis() |
||
| 30 | { |
||
| 31 | } |
||
| 32 | |||
| 33 | public function getThat() |
||
| 34 | { |
||
| 35 | } |
||
| 36 | |||
| 37 | public function setThis() |
||
| 38 | { |
||
| 39 | } |
||
| 40 | |||
| 41 | public function setThat() |
||
| 43 | } |
||
| 44 | |||
| 45 | private function getSomething() |
||
| 47 | } |
||
| 48 | |||
| 49 | private function setSomething() |
||
| 50 | { |
||
| 51 | } |
||
| 52 | |||
| 53 | protected function getSomethingElse() |
||
| 55 | } |
||
| 56 | |||
| 57 | protected function setSomethingElse() |
||
| 75 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.