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