Completed
Pull Request — master (#364)
by Kenji
02:25
created
application/tests/_ci_phpunit_test/patcher/Cache.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 use LogicException;
14 14
 use RuntimeException;
15
-
16 15
 use RecursiveIteratorIterator;
17 16
 use RecursiveDirectoryIterator;
18 17
 
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/PathChecker.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
 			}
48 48
 			$new_paths[] = $excluded ? '-'.$real_path : $real_path;
49 49
 		}
50
-        $new_paths = array_unique($new_paths, SORT_STRING);
50
+		$new_paths = array_unique($new_paths, SORT_STRING);
51 51
 		sort($new_paths, SORT_STRING);
52 52
 		return $new_paths;
53 53
 	}
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/MonkeyPatch.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -37,12 +37,12 @@
 block discarded – undo
37 37
 	}
38 38
 
39 39
 	/**
40
-     * Patch on constant
41
-     * 
42
-     * @param string $constant
43
-     * @param mixed $value
44
-     * @param string $class_method
45
-     */
40
+	 * Patch on constant
41
+	 * 
42
+	 * @param string $constant
43
+	 * @param mixed $value
44
+	 * @param string $class_method
45
+	 */
46 46
 	public static function patchConstant($constant, $value, $class_method = null)
47 47
 	{
48 48
 		ConstProxy::patch($constant, $value, $class_method);
Please login to merge, or discard this patch.