Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
33 | 1 | protected static function configureOptionResolver(OptionsResolver $resolver) |
|
34 | { |
||
35 | 1 | $resolver->setDefaults([ |
|
36 | 1 | 'httplug_client' => null, |
|
37 | 'use_cit' => false, |
||
38 | ]); |
||
39 | |||
40 | 1 | $resolver->setAllowedTypes('httplug_client', ['object', 'null']); |
|
41 | 1 | $resolver->setAllowedTypes('use_cit', ['bool', 'false']); |
|
42 | 1 | $resolver->setRequired(['app_id', 'app_code']); |
|
43 | 1 | } |
|
44 | } |
||
45 |