1 | <?php |
||
12 | class ManagementFactory |
||
13 | { |
||
14 | /** |
||
15 | * @var CacheItemPoolInterface|null |
||
16 | */ |
||
17 | private $cacheItemPool; |
||
18 | |||
19 | /** |
||
20 | * @var Authentication |
||
21 | */ |
||
22 | private $authentication; |
||
23 | |||
24 | /** |
||
25 | * @var string |
||
26 | */ |
||
27 | private $domain; |
||
28 | |||
29 | /** |
||
30 | * @var HttpClient|null |
||
31 | */ |
||
32 | private $httpClient; |
||
33 | |||
34 | /** |
||
35 | * @var LoggerInterface|null |
||
36 | */ |
||
37 | private $logger; |
||
38 | |||
39 | /** |
||
40 | * ManagementFactory constructor. |
||
41 | */ |
||
42 | 1 | public function __construct( |
|
55 | |||
56 | /** |
||
57 | * @return Management |
||
58 | */ |
||
59 | 1 | public function create() |
|
69 | |||
70 | /** |
||
71 | * @return string |
||
72 | */ |
||
73 | protected function getCachedAccessToken() |
||
87 | |||
88 | /** |
||
89 | * @return string |
||
90 | */ |
||
91 | 1 | protected function getUncachedAccessToken() |
|
99 | |||
100 | /** |
||
101 | * @return array |
||
102 | * |
||
103 | * @throws CoreException |
||
104 | */ |
||
105 | 1 | protected function getTokenStruct() |
|
133 | } |
||
134 |
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.