Test Failed
Push — master ( 67b70b...c2443c )
by Mike
02:06
created

LoggerFacade::log()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
ccs 0
cts 3
cp 0
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 2
1
<?php
2
declare(strict_types=1);
3
4
5
namespace Xervice\Logger;
6
7
8
use DataProvider\LogMessageDataProvider;
0 ignored issues
show
Bug introduced by
The type DataProvider\LogMessageDataProvider 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
use Xervice\Core\Facade\AbstractFacade;
10
11
/**
12
 * @method \Xervice\Logger\LoggerFactory getFactory()
13
 * @method \Xervice\Logger\LoggerConfig getConfig()
14
 * @method \Xervice\Logger\LoggerClient getClient()
15
 */
16
class LoggerFacade extends AbstractFacade
17
{
18
    /**
19
     * @param \DataProvider\LogMessageDataProvider $messageDataProvider
20
     */
21
    public function log(LogMessageDataProvider $messageDataProvider): void
22
    {
23
        $this->getFactory()->createLogProvider()->log($messageDataProvider);
24
    }
25
}