Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
47 | public function addMessages( |
||
48 | string $tableHtml, |
||
49 | array $errors, |
||
50 | array $success = [] |
||
51 | ): string { |
||
52 | $this->tableHandler->setModel($this->model); |
||
53 | $this->tableHandler->setHtml($tableHtml); |
||
54 | $this->tableHandler->addErrors($errors); |
||
55 | $this->tableHandler->addSuccessMessages($success); |
||
56 | return $this->tableHandler->getHtml(); |
||
57 | } |
||
59 |