It seems like getParam() 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 getManager() 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
49
$this->/** @scrutinizer ignore-call */
50
getManager()->getTable(),
Loading history...
50
1
$this->getWith()->getTable()
51
];
52
1
sort($tables);
53
54
1
return implode("_", $tables);
55
}
56
57
/**
58
* @param SelectQuery $query
59
*/
60
1
protected function hydrateQueryWithPivotConstraints($query)
It seems like getTable() 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