| Total Complexity | 4 |
| Total Lines | 33 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class Metadata implements MetadataInterface |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @param bool $bIsExcluded |
||
| 21 | * @param array $aProperties |
||
| 22 | * @param array $aProtectedMethods |
||
| 23 | */ |
||
| 24 | public function __construct(private bool $bIsExcluded, |
||
| 25 | private array $aProperties, private array $aProtectedMethods) |
||
| 26 | {} |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @inheritDoc |
||
| 30 | */ |
||
| 31 | public function isExcluded(): bool |
||
| 34 | } |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @inheritDoc |
||
| 38 | */ |
||
| 39 | public function getProperties(): array |
||
| 40 | { |
||
| 41 | return $this->aProperties; |
||
| 42 | } |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @inheritDoc |
||
| 46 | */ |
||
| 47 | public function getProtectedMethods(): array |
||
| 50 | } |
||
| 51 | } |
||
| 52 |