1 | <?php |
||
5 | class Error |
||
6 | { |
||
7 | /** @var string */ |
||
8 | protected $code; |
||
9 | |||
10 | /** @var string */ |
||
11 | protected $field; |
||
12 | |||
13 | /** @var string */ |
||
14 | protected $description; |
||
15 | |||
16 | /** |
||
17 | * @param string $code |
||
18 | * @param string $field |
||
19 | * @param string $description |
||
20 | */ |
||
21 | public function __construct($code, $field, $description) |
||
27 | |||
28 | /** |
||
29 | * @return string |
||
30 | */ |
||
31 | public function getCode() |
||
35 | |||
36 | /** |
||
37 | * @return string |
||
38 | */ |
||
39 | public function getDescription() |
||
43 | |||
44 | /** |
||
45 | * @return string |
||
46 | */ |
||
47 | public function getField() |
||
51 | } |
||
52 |