Issues (9)

src/Log/ServiceProvider.php (1 issue)

Labels
Severity
1
<?php
2
3
namespace Gravatalonga\Framework\Log;
4
5
use Gravatalonga\Interfaces\ServiceProviderInterface;
0 ignored issues
show
The type Gravatalonga\Interfaces\ServiceProviderInterface 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...
6
use Monolog\Handler\StreamHandler;
7
use Monolog\Logger;
8
use Psr\Container\ContainerInterface;
9
10
class ServiceProvider implements ServiceProviderInterface
11
{
12
    public function register(): array
13
    {
14
        return [
15
            'stream' => function (ContainerInterface $container) {
16
                return new StreamHandler($container->get('config.log')['stream'], $container->get('config.log')['level']);
17
            },
18
            Logger::class => function (ContainerInterface $container) {
19
                $logger = new Logger($container->get('config.app')['name']);
20
                $logger->pushHandler($container->get('service.stream'));
21
                return $logger;
22
            }
23
        ];
24
    }
25
}
26