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
18
$daemon->/** @scrutinizer ignore-call */
19
getConfiguration(),
Loading history...
19
$daemon->getLogger(),
20
$daemon->getEvents()
21
);
22
23
if ( empty($filter) ) {
24
$data = $manager->get();
25
} else {
26
$f = Filter::createFromExport($filter);
27
$data = $manager->get(
28
[],
29
$f->getLimit(),
30
$f->getOffset(),
31
$f->getReverse()
32
);
33
}
34
35
$resource = new Collection($data, new WorklogTransformer);