Conditions | 4 |
Paths | 3 |
Total Lines | 15 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
21 | public function postProcess() |
||
22 | { |
||
23 | if (!$this->authorize()) { |
||
24 | return; |
||
25 | }; |
||
26 | |||
27 | |||
28 | $sql = 'SELECT * FROM '._DB_PREFIX_.'pmt_logs ORDER BY id desc LIMIT 200'; |
||
29 | if ($results = Db::getInstance()->ExecuteS($sql)) { |
||
30 | foreach ($results as $row) { |
||
31 | $this->message[] = json_decode($row['log']); |
||
32 | } |
||
33 | } |
||
34 | |||
35 | $this->jsonResponse(); |
||
36 | } |
||
70 |
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