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
17
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
20
$this->/** @scrutinizer ignore-call */
21
loadRelations($data);
Loading history...
21
}
22
return $loaded;
23
}
24
25
/**
26
* @param $data
27
*/
28
private function _prepareLoadData(&$data, $formName) {
It seems like formName() 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
It seems like getRelation() 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