1 | <?php |
||
18 | trait ApiLoaderTrait |
||
19 | { |
||
20 | use LoaderTrait, LazyLoaderTrait; |
||
21 | |||
22 | /** |
||
23 | * @var ApiClientInterface |
||
24 | */ |
||
25 | protected $restApiClient; |
||
26 | |||
27 | /** |
||
28 | * @var SerializerInterface |
||
29 | */ |
||
30 | protected $serializer; |
||
31 | |||
32 | /** |
||
33 | * Construct. |
||
34 | * |
||
35 | * @param ApiClientInterface $restApiClient |
||
36 | * @param SerializerInterface $serializer |
||
37 | */ |
||
38 | public function __construct( |
||
45 | |||
46 | /** |
||
47 | * Resolve given filters. |
||
48 | * |
||
49 | * @param array $filters |
||
50 | * |
||
51 | * @return array |
||
52 | */ |
||
53 | private function resolveFilters(array $filters = array()) |
||
59 | |||
60 | /** |
||
61 | * Performs an Api call on given method. |
||
62 | * |
||
63 | * @param string $method |
||
64 | * @param array $query |
||
65 | * @param callable $onSuccess |
||
66 | * @param mixed $emptyValue |
||
67 | */ |
||
68 | private function apiCall( |
||
88 | |||
89 | /** |
||
90 | * @see LoaderInterface::retrieveAll() |
||
91 | */ |
||
92 | public function retrieveAll(array $filters = array(), $limit = null, $offset = null) |
||
112 | |||
113 | /** |
||
114 | * @see LoaderInterface::retrieveOne() |
||
115 | */ |
||
116 | public function retrieveOne(array $filters = array()) |
||
120 | |||
121 | /** |
||
122 | * @see LoaderInterface::retrieve() |
||
123 | */ |
||
124 | public function retrieve($id) |
||
136 | } |
||
137 |
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.