Completed
Pull Request — master (#25)
by
unknown
08:23
created
src/MySQLReplication/Repository/MySQLRepository.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -75,13 +75,13 @@
 block discarded – undo
75 75
     {
76 76
         $res = $this->getConnection()->fetchAssoc('SHOW GLOBAL VARIABLES LIKE "BINLOG_CHECKSUM"');
77 77
 
78
-		if (!isset($res['Value'])) {
79
-			return false;
80
-		}
78
+        if (!isset($res['Value'])) {
79
+            return false;
80
+        }
81 81
 
82
-		$check_sum = $res['Value'];
82
+        $check_sum = $res['Value'];
83 83
 
84
-		return (!empty($check_sum) && strtolower($check_sum) !== 'none');
84
+        return (!empty($check_sum) && strtolower($check_sum) !== 'none');
85 85
     }
86 86
 
87 87
     /**
Please login to merge, or discard this patch.