Conditions | 1 |
Paths | 1 |
Total Lines | 18 |
Code Lines | 14 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php declare(strict_types=1); |
||
15 | public function onPage(\Enlight_Event_EventArgs $args) |
||
16 | { |
||
17 | /** @var \Shopware_Controllers_Frontend_Detail $subject */ |
||
18 | $subject = $args->getSubject(); |
||
19 | ini_set('xdebug.var_display_max_depth', '5'); |
||
20 | ini_set('xdebug.var_display_max_children', '256'); |
||
21 | ini_set('xdebug.var_display_max_data', '1024'); |
||
22 | echo '<pre>'; |
||
23 | var_dump(Shopware()->Config()->get('mailer_mailer')); |
||
24 | echo '</pre>'; |
||
25 | echo '<pre>'; |
||
26 | var_dump( |
||
27 | Shopware()->Container() |
||
28 | ->get('shopware.plugin.config_reader')->getByPluginName( |
||
29 | 'SwagPaymentPaypal', Shopware()->Shop() |
||
30 | )['paypalUsername'] |
||
31 | ); |
||
32 | echo '</pre>'; |
||
33 | } |
||
40 |
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