Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
22 | abstract class RestAutoMapperConfiguration implements AutoMapperConfiguratorInterface |
||
23 | { |
||
24 | /** |
||
25 | * Classes to use specified request mapper. |
||
26 | * |
||
27 | * @var array<int, class-string> |
||
|
|||
28 | */ |
||
29 | protected static array $requestMapperClasses = []; |
||
30 | |||
31 | 82 | public function __construct( |
|
34 | 82 | } |
|
35 | |||
36 | /** |
||
37 | * Use this method to register your mappings. |
||
38 | * |
||
39 | * @psalm-suppress UndefinedThisPropertyFetch |
||
40 | */ |
||
41 | 79 | public function configure(AutoMapperConfigInterface $config): void |
|
50 |