Total Complexity | 6 |
Total Lines | 48 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
14 | trait TraitSortableDaftObject |
||
15 | { |
||
16 | /** |
||
17 | * @return scalar|array|object|null |
||
18 | */ |
||
19 | abstract public function __get(string $property); |
||
20 | |||
21 | /** |
||
22 | * @psalm-param T as $otherObject |
||
23 | */ |
||
24 | public function CompareToDaftSortableObject(DaftSortableObject $otherObject) : int |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @return array<int, string> |
||
46 | */ |
||
47 | public static function DaftSortableObjectProperties() : array |
||
64 |