Completed
Push — php-cs-fixer ( b6f93e )
by Fabio
07:29
created
framework/PradoBase.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -28,13 +28,13 @@
 block discarded – undo
28 28
 if(!defined('PRADO_DIR'))
29 29
 	define('PRADO_DIR', __DIR__);
30 30
 /**
31
- * Defines the default permission for writable directories and files
32
- */
31
+	 * Defines the default permission for writable directories and files
32
+	 */
33 33
 if(!defined('PRADO_CHMOD'))
34 34
 	define('PRADO_CHMOD', 0777);
35 35
 /**
36
- * Defines the Composer's vendor/ path.
37
- */
36
+	 * Defines the Composer's vendor/ path.
37
+	 */
38 38
 if(!defined('PRADO_VENDORDIR'))
39 39
 {
40 40
 	$reflector = new \ReflectionClass('\Composer\Autoload\ClassLoader');
Please login to merge, or discard this patch.
framework/I18N/core/TCache_Lite.php 1 patch
Switch Indentation   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -607,15 +607,15 @@
 block discarded – undo
607 607
 	public function _hash($data, $controlType)
608 608
 	{
609 609
 		switch ($controlType) {
610
-		case 'md5':
611
-			return md5($data);
612
-		case 'crc32':
613
-			return sprintf('% 32d', crc32($data));
614
-		case 'strlen':
615
-			return sprintf('% 32d', strlen($data));
616
-		default:
617
-			$this->raiseError('Unknown controlType ! ' .
618
-			'(available values are only \'md5\', \'crc32\', \'strlen\')', -5);
610
+			case 'md5':
611
+				return md5($data);
612
+			case 'crc32':
613
+				return sprintf('% 32d', crc32($data));
614
+			case 'strlen':
615
+				return sprintf('% 32d', strlen($data));
616
+			default:
617
+				$this->raiseError('Unknown controlType ! ' .
618
+				'(available values are only \'md5\', \'crc32\', \'strlen\')', -5);
619 619
 		}
620 620
 	}
621 621
 
Please login to merge, or discard this patch.