1 | <?php |
||
2 | |||
3 | namespace HexMakina\Logger; |
||
4 | |||
5 | /** |
||
6 | * Extends PSR LoggerInterface to include "success" logger |
||
7 | */ |
||
8 | interface LoggerInterface extends \Psr\Log\LoggerInterface |
||
0 ignored issues
–
show
|
|||
9 | { |
||
10 | /** |
||
11 | * nice(): Detailed success information. |
||
12 | * |
||
13 | * @param string $message |
||
14 | * @param array $context |
||
15 | * |
||
16 | * @return void |
||
17 | */ |
||
18 | public function nice($message, array $context = array()); |
||
19 | |||
20 | public function report_to_user($level, $message, $context = []); |
||
21 | public function get_user_report(); |
||
22 | public function clean_user_report(); |
||
23 | |||
24 | public function has_halting_messages(); |
||
25 | |||
26 | } |
||
27 |
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