Total Complexity | 4 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | class PayuCeeSingleSubForm extends AbstractSubForm |
||
16 | { |
||
17 | protected const PAYMENT_METHOD = 'payu-cee-single'; |
||
18 | |||
19 | /** |
||
20 | * @return string |
||
21 | */ |
||
22 | public function getName(): string |
||
25 | } |
||
26 | |||
27 | /** |
||
28 | * @return string |
||
29 | */ |
||
30 | public function getPropertyPath(): string |
||
33 | } |
||
34 | |||
35 | /** |
||
36 | * @param \Symfony\Component\OptionsResolver\OptionsResolver $resolver |
||
37 | * |
||
38 | * @return void |
||
39 | */ |
||
40 | public function configureOptions(OptionsResolver $resolver): void |
||
41 | { |
||
42 | $resolver->setDefaults([ |
||
43 | 'data_class' => ComputopPayuCeeSinglePaymentTransfer::class, |
||
44 | ])->setRequired(static::OPTIONS_FIELD_NAME); |
||
45 | } |
||
46 | |||
47 | /** |
||
48 | * @return string |
||
49 | */ |
||
50 | protected function getTemplatePath(): string |
||
53 | } |
||
54 | } |
||
55 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"]
, you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths