1 | <?php |
||
5 | trait ErrorTrait |
||
6 | { |
||
7 | /** |
||
8 | * @var array |
||
9 | */ |
||
10 | protected $errors = []; |
||
11 | |||
12 | /** |
||
13 | * @param string $text |
||
14 | * |
||
15 | * @return void |
||
16 | */ |
||
17 | protected function addError($text) |
||
21 | |||
22 | /** |
||
23 | * @return bool |
||
24 | */ |
||
25 | public function hasErrors() |
||
29 | |||
30 | /** |
||
31 | * @return array |
||
32 | */ |
||
33 | public function getErrors() |
||
37 | } |
||
38 |