Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | public function __construct( |
||
23 | protected string $group = 'default', |
||
24 | protected string|null $alias = null, |
||
25 | protected string|null $description = null, |
||
26 | protected string|null $type = null, |
||
27 | protected string|null $hydratorStrategy = null, |
||
28 | array $excludeFilters = [], |
||
29 | array $includeFilters = [], |
||
30 | ) { |
||
31 | $this->includeFilters = $includeFilters; |
||
32 | $this->excludeFilters = $excludeFilters; |
||
33 | } |
||
60 |