1 | <?php |
||
29 | class Driver extends DriverAbstract |
||
30 | { |
||
31 | /** |
||
32 | * @var CouchbaseClient |
||
33 | */ |
||
34 | public $instance; |
||
35 | |||
36 | /** |
||
37 | * @var \CouchbaseBucket[] |
||
38 | */ |
||
39 | protected $bucketInstances = []; |
||
40 | |||
41 | /** |
||
42 | * @var string |
||
43 | */ |
||
44 | protected $bucketCurrent = ''; |
||
45 | |||
46 | /** |
||
47 | * Driver constructor. |
||
48 | * @param array $config |
||
49 | * @throws phpFastCacheDriverException |
||
50 | */ |
||
51 | public function __construct(array $config = []) |
||
61 | |||
62 | /** |
||
63 | * @return bool |
||
64 | */ |
||
65 | public function driverCheck() |
||
69 | |||
70 | /** |
||
71 | * @param \Psr\Cache\CacheItemInterface $item |
||
72 | * @return mixed |
||
73 | * @throws \InvalidArgumentException |
||
74 | */ |
||
75 | protected function driverWrite(CacheItemInterface $item) |
||
86 | |||
87 | /** |
||
88 | * @param \Psr\Cache\CacheItemInterface $item |
||
89 | * @return mixed |
||
90 | */ |
||
91 | protected function driverRead(CacheItemInterface $item) |
||
102 | |||
103 | /** |
||
104 | * @param \Psr\Cache\CacheItemInterface $item |
||
105 | * @return bool |
||
106 | * @throws \InvalidArgumentException |
||
107 | */ |
||
108 | protected function driverDelete(CacheItemInterface $item) |
||
119 | |||
120 | /** |
||
121 | * @return bool |
||
122 | */ |
||
123 | protected function driverClear() |
||
127 | |||
128 | /** |
||
129 | * @return bool |
||
130 | */ |
||
131 | protected function driverConnect() |
||
157 | |||
158 | /** |
||
159 | * @return \CouchbaseBucket |
||
160 | */ |
||
161 | protected function getBucket() |
||
165 | |||
166 | /** |
||
167 | * @param $bucketName |
||
168 | * @param \CouchbaseBucket $CouchbaseBucket |
||
169 | * @throws \LogicException |
||
170 | */ |
||
171 | protected function setBucket($bucketName, \CouchbaseBucket $CouchbaseBucket) |
||
179 | |||
180 | /******************** |
||
181 | * |
||
182 | * PSR-6 Extended Methods |
||
183 | * |
||
184 | *******************/ |
||
185 | |||
186 | /** |
||
187 | * @return driverStatistic |
||
188 | */ |
||
189 | public function getStats() |
||
199 | } |
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.