Failed Conditions
Pull Request — master (#321)
by Anton
23:35 queued 08:33
created

application/models/Privileges/Row.php (1 issue)

Labels
Severity
1
<?php
2
/**
3
 * @copyright Bluz PHP Team
4
 * @link      https://github.com/bluzphp/skeleton
5
 */
6
7
declare(strict_types=1);
8
9
namespace Application\Privileges;
10
11
/**
12
 * Row of Privileges
13
 *
14
 * @package  Application\Privileges
15
 *
16
 * @property integer $roleId
17
 * @property string $module
18
 * @property string $privilege
19
 */
20
class Row extends \Bluz\Db\Row
0 ignored issues
show
The type Bluz\Db\Row 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...
21
{
22
}
23