Passed
Push — main ( 8cc9f6...eb1f6e )
by Sammy
01:24
created

LoggerInterface.class.php (1 issue)

Labels
Severity
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
The type Psr\Log\LoggerInterface was not found. Maybe you did not declare it correctly or list all dependencies?

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:

filter:
    dependency_paths: ["lib/*"]

For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths

Loading history...
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