Issues (219)

DtcQueueBundle.php (2 issues)

1
<?php
2
3
namespace Dtc\QueueBundle;
4
5
use Dtc\QueueBundle\DependencyInjection\Compiler\BeanstalkdCompilerPass;
6
use Dtc\QueueBundle\DependencyInjection\Compiler\GridCompilerPass;
7
use Dtc\QueueBundle\DependencyInjection\Compiler\RabbitMQCompilerPass;
8
use Dtc\QueueBundle\DependencyInjection\Compiler\RedisCompilerPass;
9
use Dtc\QueueBundle\DependencyInjection\Compiler\WorkerCompilerPass;
10
use Symfony\Component\DependencyInjection\ContainerBuilder;
0 ignored issues
show
The type Symfony\Component\Depend...ection\ContainerBuilder 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...
11
use Symfony\Component\HttpKernel\Bundle\Bundle;
0 ignored issues
show
The type Symfony\Component\HttpKernel\Bundle\Bundle 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...
12
13
class DtcQueueBundle extends Bundle
14
{
15
    public function build(ContainerBuilder $container): void
16
    {
17
        parent::build($container);
18
        $container->addCompilerPass(new WorkerCompilerPass());
19
        $container->addCompilerPass(new RabbitMQCompilerPass());
20
        $container->addCompilerPass(new BeanstalkdCompilerPass());
21
        $container->addCompilerPass(new RedisCompilerPass());
22
        $container->addCompilerPass(new GridCompilerPass());
23
    }
24
}
25