| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 39 | public function getRuleList(): array |
||
| 40 | { |
||
| 41 | return array_merge(parent::getRuleList(), [ |
||
| 42 | 'fnFactoryNumber' => ['required', ['lengthMin', 1], ['lengthMax', 16]], |
||
| 43 | 'start' => ['required', ['dateFormat', 'Y-m-d\TH:i:s']], |
||
| 44 | 'end' => ['required', ['dateFormat', 'Y-m-d\TH:i:s']], |
||
| 45 | ]); |
||
| 47 | } |