Passed
Push — main ( eecacd...dafd8a )
by Dimitri
11:37
created
Handlers/File.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -310,13 +310,13 @@  discard block
 block discarded – undo
310 310
         throw new LogicException('Les fichiers ne peuvent pas être incrémentés de manière atomique.');
311 311
     }
312 312
 
313
-	/**
314
-	 * {@inheritDoc}
315
-	 */
316
-	public function info()
317
-	{
313
+ /**
314
+  * {@inheritDoc}
315
+  */
316
+ public function info()
317
+ {
318 318
         return $this->getDirFileInfo($this->_config['path']);
319
-	}
319
+ }
320 320
 
321 321
     /**
322 322
      * Définit la clé de cache actuelle que cette classe gère et crée un SplFileObject inscriptible
@@ -485,13 +485,13 @@  discard block
 block discarded – undo
485 485
 
486 486
         if ($fp = @opendir($sourceDir)) {
487 487
             // réinitialise le tableau et s'assure que $source_dir a une barre oblique à la fin de l'appel initial
488
-			if ($_recursion === false) {
488
+   if ($_recursion === false) {
489 489
                 $_filedata = [];
490 490
                 $sourceDir = rtrim(realpath($sourceDir) ?: $sourceDir, DIRECTORY_SEPARATOR) . DIRECTORY_SEPARATOR;
491 491
             }
492 492
 
493 493
             // Utilisé pour être foreach (scandir($source_dir, 1) comme $file), mais scandir() n'est tout simplement pas aussi rapide
494
-			while (false !== ($file = readdir($fp))) {
494
+   while (false !== ($file = readdir($fp))) {
495 495
                 if (is_dir($sourceDir . $file) && $file[0] !== '.' && $topLevelOnly === false) {
496 496
                     $this->getDirFileInfo($sourceDir . $file . DIRECTORY_SEPARATOR, $topLevelOnly, true);
497 497
                 } elseif (! is_dir($sourceDir . $file) && $file[0] !== '.') {
Please login to merge, or discard this patch.
Handlers/RedisHandler.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -234,13 +234,13 @@
 block discarded – undo
234 234
         return (bool) ($this->_Redis->set($key, $value, ['nx', 'ex' => $duration]));
235 235
     }
236 236
 
237
-	/**
238
-	 * {@inheritDoc}
239
-	 */
240
-	public function info()
241
-	{
242
-		return $this->_Redis->info();
243
-	}
237
+ /**
238
+  * {@inheritDoc}
239
+  */
240
+ public function info()
241
+ {
242
+  return $this->_Redis->info();
243
+ }
244 244
 
245 245
     /**
246 246
      * {@inheritDoc}
Please login to merge, or discard this patch.
Handlers/Memcached.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -407,13 +407,13 @@
 block discarded – undo
407 407
         return $this->_Memcached->add($key, $value, $duration);
408 408
     }
409 409
 
410
-	/**
411
-	 * {@inheritDoc}
412
-	 */
413
-	public function info()
414
-	{
415
-		return $this->_Memcached->getStats();
416
-	}
410
+ /**
411
+  * {@inheritDoc}
412
+  */
413
+ public function info()
414
+ {
415
+  return $this->_Memcached->getStats();
416
+ }
417 417
 
418 418
     /**
419 419
      * {@inheritDoc}
Please login to merge, or discard this patch.
Handlers/BaseHandler.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -339,13 +339,13 @@
 block discarded – undo
339 339
      */
340 340
     abstract public function clearGroup(string $group): bool;
341 341
 
342
-	/**
343
-	 * {@inheritDoc}
344
-	 */
345
-	public function info()
346
-	{
347
-		return null;
348
-	}
342
+ /**
343
+  * {@inheritDoc}
344
+  */
345
+ public function info()
346
+ {
347
+  return null;
348
+ }
349 349
 
350 350
     /**
351 351
      * Effectue toute initialisation pour chaque groupe est nécessaire
Please login to merge, or discard this patch.
Handlers/Wincache.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -113,13 +113,13 @@
 block discarded – undo
113 113
         return true;
114 114
     }
115 115
 
116
-	/**
117
-	 * {@inheritDoc}
118
-	 */
119
-	public function info()
120
-	{
121
-		return wincache_ucache_info(true);
122
-	}
116
+ /**
117
+  * {@inheritDoc}
118
+  */
119
+ public function info()
120
+ {
121
+  return wincache_ucache_info(true);
122
+ }
123 123
 
124 124
     /**
125 125
      * {@inheritDoc}
Please login to merge, or discard this patch.
CacheInterface.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -53,13 +53,13 @@
 block discarded – undo
53 53
      */
54 54
     public function clearGroup(string $group): bool;
55 55
 
56
-	/**
57
-     * Renvoie des informations sur l'ensemble du cache.
58
-     *
59
-     * Les informations retournées et la structure des données
60
-     * varie selon le gestionnaire.
61
-     *
62
-     * @return array|false|object|null
63
-     */
56
+ /**
57
+  * Renvoie des informations sur l'ensemble du cache.
58
+  *
59
+  * Les informations retournées et la structure des données
60
+  * varie selon le gestionnaire.
61
+  *
62
+  * @return array|false|object|null
63
+  */
64 64
     public function info();
65 65
 }
Please login to merge, or discard this patch.