The type Ubiquity\security\acl\mo...\traits\AbstractAclPart 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:
It seems like getProvider() must be provided by classes using this trait. How about adding it as abstract method to this trait?
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
56
/** @scrutinizer ignore-call */
57
$prov = $this->getProvider($providerClass);
Loading history...
57
if (isset($prov)) {
58
return $prov->existPart($part);
59
}
60
return false;
61
}
62
63
/**
64
*
65
* @param AclElement $elm
66
* @param string $providerClass
67
* @return boolean
68
*/
69
public function existAclIn(AclElement $elm, string $providerClass) {
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