Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 5 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
25 | 58 | public function bootstrap($app) |
|
26 | { |
||
27 | 58 | Validator::$builtInValidators = array_merge([ |
|
28 | 58 | 'ipvn' => IpValidator::class, |
|
29 | 'idnumvn' => IdNumValidator::class, |
||
30 | 'telnumvn' => TelNumValidator::class, |
||
31 | 'domainvn' => DomainValidator::class |
||
32 | 58 | ], Validator::$builtInValidators); |
|
33 | 58 | } |
|
34 | |||
36 |