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