Completed
Push — 2.0 ( aed067...b26523 )
by Marco
04:31
created
src/Comodojo/Cache/Cache.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -308,6 +308,9 @@  discard block
 block discarded – undo
308 308
     // public function getErrorMessage();
309 309
 
310 310
 
311
+    /**
312
+     * @param string $name
313
+     */
311 314
     private function getFromSingleProvider($selector, $name) {
312 315
 
313 316
         switch ($this->selector) {
@@ -335,6 +338,9 @@  discard block
 block discarded – undo
335 338
 
336 339
     }
337 340
 
341
+    /**
342
+     * @param string $name
343
+     */
338 344
     private function getFromAllProviders($name) {
339 345
 
340 346
         $data = array();
@@ -356,6 +362,9 @@  discard block
 block discarded – undo
356 362
 
357 363
     }
358 364
 
365
+    /**
366
+     * @param string $name
367
+     */
359 368
     private function getTraverse($name) {
360 369
 
361 370
         $data;
Please login to merge, or discard this patch.
src/Comodojo/Cache/Providers/XCache.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 
26 26
 class XCache extends AbstractProvider {
27 27
 
28
-   /**
28
+    /**
29 29
      * Class constructor
30 30
      *
31 31
      * @param LoggerInterface $logger
Please login to merge, or discard this patch.
src/Comodojo/Cache/CacheManager.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      *
31 31
      * @throws \Comodojo\Exception\CacheException
32 32
      */
33
-     public function __construct($select_mode = null, LoggerInterface $logger = null, $default_ttl = 3600, $flap_interval = 600) {
33
+        public function __construct($select_mode = null, LoggerInterface $logger = null, $default_ttl = 3600, $flap_interval = 600) {
34 34
 
35 35
         parent::__construct($select_mode, $logger);
36 36
 
Please login to merge, or discard this patch.