1 | <?php |
||
7 | class Header |
||
8 | { |
||
9 | private $name; |
||
10 | private $sorted; |
||
11 | private $isSortAscending; |
||
12 | |||
13 | public function __construct(string $name, bool $sorted, bool $isSortAscending) |
||
19 | |||
20 | public function getName() |
||
24 | |||
25 | public function isSorted(): bool |
||
29 | |||
30 | public function isSortAscending(): bool |
||
34 | } |
||
35 |