Total Complexity | 3 |
Total Lines | 38 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
8 | class EmailMisspellingHandler implements MisspellingHandlerInterface |
||
9 | { |
||
10 | /** |
||
11 | * @var EmailSenderInterface |
||
|
|||
12 | */ |
||
13 | private $emailSender; |
||
14 | |||
15 | public function __construct(EmailSenderInterface $emailSender) |
||
16 | { |
||
17 | $this->emailSender = $emailSender; |
||
18 | } |
||
19 | |||
20 | /** |
||
21 | * @param MisspellingInterface[] $misspellings |
||
22 | */ |
||
23 | public function handle(iterable $misspellings) |
||
46 | } |
||
47 | } |
||
48 |
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