Total Complexity | 7 |
Total Lines | 62 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6 | class PaylaterLogModuleFrontController extends ModuleFrontController |
||
|
|||
7 | { |
||
8 | /** |
||
9 | * @var string $message |
||
10 | */ |
||
11 | protected $message; |
||
12 | |||
13 | /** |
||
14 | * @var bool $error |
||
15 | */ |
||
16 | protected $error = false; |
||
17 | |||
18 | /** |
||
19 | * Controller index method: |
||
20 | */ |
||
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 | } |
||
37 | |||
38 | /** |
||
39 | * Send a jsonResponse |
||
40 | */ |
||
41 | public function jsonResponse() |
||
42 | { |
||
43 | $result = json_encode($this->message); |
||
44 | |||
45 | header('HTTP/1.1 200 Ok', true, 200); |
||
46 | header('Content-Type: application/json', true); |
||
47 | header('Content-Length: ' . Tools::strlen($result)); |
||
48 | |||
49 | echo $result; |
||
50 | exit(); |
||
51 | } |
||
52 | |||
53 | /** |
||
54 | * @return bool|null |
||
55 | */ |
||
56 | public function authorize() |
||
68 | } |
||
69 | } |
||
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