Total Complexity | 1 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | #[Attribute(Attribute::TARGET_CLASS)] |
||
18 | final class Sorting |
||
19 | { |
||
20 | /** |
||
21 | * FQCN of PHP class implementing `SortingInterface`. |
||
22 | * |
||
23 | * @var array<string> |
||
24 | */ |
||
25 | public array $classes = []; |
||
26 | |||
27 | /** |
||
28 | * @param array<string> $classes |
||
29 | */ |
||
30 | public function __construct(array $classes) |
||
35 |