| Total Complexity | 5 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 23 | #[Attribute(Attribute::TARGET_CLASS)] |
||
| 24 | class Export extends AbstractAttribute |
||
| 25 | { |
||
| 26 | /** |
||
| 27 | * @param array|null $base = null |
||
| 28 | * @param array|null $only = null |
||
| 29 | * @param array|null $except = null |
||
| 30 | */ |
||
| 31 | public function __construct(private array|null $base = null, |
||
| 32 | private array|null $only = null, private array|null $except = null) |
||
| 33 | {} |
||
| 34 | |||
| 35 | /** |
||
| 36 | * @inheritDoc |
||
| 37 | */ |
||
| 38 | public function saveValue(Metadata $xMetadata, string $sMethod = '*'): void |
||
| 50 | } |
||
| 51 | } |
||
| 52 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.