| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | namespace Ray\AuraSqlModule; |
||
| 6 | |||
| 7 | use Aura\Sql\Profiler\ProfilerInterface; |
||
| 8 | use Override; |
||
| 9 | use Ray\Di\AbstractModule; |
||
| 10 | |||
| 11 | final class AuraSqlProfileModule extends AbstractModule |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * {@inheritDoc} |
||
| 15 | */ |
||
| 16 | #[Override] |
||
| 17 | protected function configure(): void |
||
| 18 | { |
||
| 19 | $this->bind(ProfilerInterface::class)->toProvider(ProfilerProvider::class); |
||
|
0 ignored issues
–
show
|
|||
| 20 | } |
||
| 21 | } |
||
| 22 |
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