Total Complexity | 2 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
17 | class SubscriptionsCharge extends Command |
||
18 | { |
||
19 | public const NAME = 'payments:subscriptions:charge'; |
||
20 | |||
21 | protected function configure() |
||
22 | { |
||
23 | parent::configure(); |
||
24 | $this->setName(static::NAME); |
||
25 | $this |
||
26 | ->setAliases(['p:charge']) |
||
27 | ->setDescription('Charge due subscriptions'); |
||
28 | } |
||
29 | |||
30 | /** |
||
31 | * @inheritDoc |
||
32 | */ |
||
33 | protected function execute(InputInterface $input, OutputInterface $output): int |
||
41 | } |
||
42 | } |
||
43 |
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