The method getConfiguration() does not exist on Comodojo\Daemon\Daemon. It seems like you code against a sub-type of Comodojo\Daemon\Daemon such as Comodojo\Extender\ExtenderDaemon.
(
Ignorable by Annotation
)
If this is a false-positive, you can also ignore this issue in your code via the ignore-call annotation
19
$daemon->/** @scrutinizer ignore-call */
20
getConfiguration(),
Loading history...
20
$daemon->getLogger(),
21
$daemon->getEvents()
22
);
23
24
if ( empty($filter) ) {
25
$data = $manager->get(['jid' => $jid]);
26
} else {
27
$f = Filter::createFromExport($filter);
28
$data = $manager->get(
29
['jid' => $jid],
30
$f->getLimit(),
31
$f->getOffset(),
32
$f->getReverse()
33
);
34
}
35
36
$resource = new Collection($data, new WorklogTransformer);