| Total Complexity | 10 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 20 | $testClass = new class () |
||
| 21 | { |
||
| 22 | use UsesPHPMetaDataTrait; |
||
|
|
|||
| 23 | |||
| 24 | public function __construct() |
||
| 25 | { |
||
| 26 | $this->runInitMethods(); |
||
| 27 | } |
||
| 28 | |||
| 29 | protected static function setCustomRepositoryClass(ClassMetadataBuilder $builder): void |
||
| 30 | { |
||
| 31 | // TODO: Implement setCustomRepositoryClass() method. |
||
| 32 | } |
||
| 33 | |||
| 34 | public function getThis(): void |
||
| 35 | { |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getThat(): void |
||
| 39 | { |
||
| 40 | } |
||
| 41 | |||
| 42 | public function setThis(): void |
||
| 43 | { |
||
| 44 | } |
||
| 45 | |||
| 46 | public function setThat(): void |
||
| 48 | } |
||
| 49 | |||
| 50 | private function getSomething(): void |
||
| 52 | } |
||
| 53 | |||
| 54 | private function setSomething(): void |
||
| 55 | { |
||
| 56 | } |
||
| 57 | |||
| 58 | protected function getSomethingElse(): void |
||
| 60 | } |
||
| 61 | |||
| 62 | protected function setSomethingElse(): void |
||
| 80 |