Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
9 | 3 | public static function getDefaultRules(): array |
|
10 | { |
||
11 | return [ |
||
12 | 3 | 'locale' => [new Assert\NotBlank(), new Assert\Locale()], |
|
13 | 3 | 'title' => [new Assert\NotBlank(), new Assert\Length(['min' => 3, 'max' => 50])], |
|
14 | 3 | 'posterUrl' => [new Assert\NotBlank(), new Assert\Length(['min' => 10, 'max' => 255])], |
|
15 | 3 | 'overview' => [new Assert\NotBlank(), new Assert\Length(['min' => 50])], |
|
16 | ]; |
||
17 | } |
||
18 | } |