| Total Complexity | 3 | 
| Total Lines | 36 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 0 | 
| 1 | <?php  | 
            ||
| 13 | final class Version0_19_0 extends AbstractMigration  | 
            ||
| 14 | { | 
            ||
| 15 | /**  | 
            ||
| 16 | * @var \Ds\Component\Acl\Migration\Version0_19_0  | 
            ||
| 17 | */  | 
            ||
| 18 | private $acl;  | 
            ||
| 19 | |||
| 20 | /**  | 
            ||
| 21 | * Constructor  | 
            ||
| 22 | *  | 
            ||
| 23 | * @param \Doctrine\DBAL\Migrations\Version $version  | 
            ||
| 24 | */  | 
            ||
| 25 | public function __construct(Version $version)  | 
            ||
| 26 |     { | 
            ||
| 27 | parent::__construct($version);  | 
            ||
| 28 | $this->acl = new Acl($version);  | 
            ||
| 29 | }  | 
            ||
| 30 | |||
| 31 | /**  | 
            ||
| 32 | * Up migration  | 
            ||
| 33 | *  | 
            ||
| 34 | * @param \Doctrine\DBAL\Schema\Schema $schema  | 
            ||
| 35 | */  | 
            ||
| 36 | public function up(Schema $schema)  | 
            ||
| 37 |     { | 
            ||
| 38 | $this->acl->up($schema);  | 
            ||
| 39 | }  | 
            ||
| 40 | |||
| 41 | /**  | 
            ||
| 42 | * Down migration  | 
            ||
| 43 | *  | 
            ||
| 44 | * @param \Doctrine\DBAL\Schema\Schema $schema  | 
            ||
| 45 | */  | 
            ||
| 46 | public function down(Schema $schema)  | 
            ||
| 49 | }  | 
            ||
| 50 | }  | 
            ||
| 51 | 
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