| Total Complexity | 10 |
| Total Lines | 59 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 14 | class UsesPHPMetaDataTraitUnitTest extends TestCase |
||
| 15 | { |
||
| 16 | |||
| 17 | |||
| 18 | public function testGetGettersAndSetters() |
||
| 19 | { |
||
| 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() |
||
| 73 | } |
||
| 74 | } |
||
| 75 |
This check looks for parameters that have been defined for a function or method, but which are not used in the method body.