Completed
Push — master ( 8bf457...1b6886 )
by Fabio
125:44 queued 107:24
created
framework/I18N/core/TCache_Lite.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -496,8 +496,8 @@
 block discarded – undo
496 496
 	{
497 497
 		$this->_memoryCachingArray[$this->_file] = $data;
498 498
 		if ($this->_memoryCachingCounter >= $this->_memoryCachingLimit) {
499
-            $key = key($this->_memoryCachingArray);
500
-            next($this->_memoryCachingArray);
499
+			$key = key($this->_memoryCachingArray);
500
+			next($this->_memoryCachingArray);
501 501
 			unset($this->_memoryCachingArray[$key]);
502 502
 		} else {
503 503
 			$this->_memoryCachingCounter = $this->_memoryCachingCounter + 1;
Please login to merge, or discard this patch.