Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
15 | public function __construct( |
||
16 | string $classFqn, |
||
17 | string $name, |
||
18 | Table $table, |
||
19 | Paginator $paginator, |
||
20 | FilterForm $filter |
||
21 | ) { |
||
22 | $this->name = $name; |
||
23 | $this->table = $table; |
||
24 | $this->paginator = $paginator; |
||
25 | $this->filter = $filter; |
||
26 | $this->classFqn = $classFqn; |
||
27 | } |
||
28 | |||
54 |