It seems like hasMethod() 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
14
if ($loaded && $this->/** @scrutinizer ignore-call */ hasMethod('loadRelations')) {
It seems like loadRelations() 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
15
$this->/** @scrutinizer ignore-call */
16
loadRelations($data);
Loading history...
16
}
17
return $loaded;
18
}
19
20
/**
21
* Starts transaction if [autoStartTransaction] has been defined
It seems like hasProperty() 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
25
if ($this->/** @scrutinizer ignore-call */ hasProperty('autoStartTransaction')) {