1 | <?php |
||
7 | class ValidationViolation |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | protected $message; |
||
13 | |||
14 | /** |
||
15 | * @var null|string |
||
16 | */ |
||
17 | protected $property; |
||
18 | |||
19 | 1 | protected function __construct(string $message, ?string $property = null) |
|
24 | |||
25 | public function __toString(): string |
||
29 | |||
30 | 1 | public static function create(string $message, ?string $property = null): self |
|
34 | |||
35 | public function getMessage(): string |
||
39 | |||
40 | public function getProperty(): ?string |
||
44 | } |
||
45 |