Completed
Pull Request — master (#165)
by Kenji
02:57
created
tests/_ci_phpunit_test/patcher/2.x/Patcher/ConstantPatcher/NodeVisitor.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use PhpParser\Node\Name;
16 16
 use PhpParser\Node\Name\FullyQualified;
17 17
 use PhpParser\NodeVisitorAbstract;
18
-
19 18
 use Kenjis\MonkeyPatch\Patcher\ConstantPatcher;
20 19
 
21 20
 class NodeVisitor extends NodeVisitorAbstract
Please login to merge, or discard this patch.
tests/_ci_phpunit_test/patcher/2.x/Patcher/FunctionPatcher/Proxy.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use LogicException;
16 16
 use ReflectionFunction;
17 17
 use ReflectionException;
18
-
19 18
 use Kenjis\MonkeyPatch\Patcher\FunctionPatcher;
20 19
 use Kenjis\MonkeyPatch\Patcher\Backtrace;
21 20
 use Kenjis\MonkeyPatch\MonkeyPatchManager;
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/3.x/Patcher/ConstantPatcher.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 require __DIR__ . '/ConstantPatcher/Proxy.php';
15 15
 
16 16
 use LogicException;
17
-
18 17
 use Kenjis\MonkeyPatch\Patcher\ConstantPatcher\NodeVisitor;
19 18
 
20 19
 class ConstantPatcher extends AbstractPatcher
Please login to merge, or discard this patch.
tests/_ci_phpunit_test/patcher/3.x/Patcher/ConstantPatcher/Proxy.php 1 patch
Unused Use Statements   -5 removed lines patch added patch discarded remove patch
@@ -13,14 +13,9 @@
 block discarded – undo
13 13
 class_alias('Kenjis\MonkeyPatch\Patcher\ConstantPatcher\Proxy', '__ConstProxy__');
14 14
 
15 15
 use LogicException;
16
-use ReflectionConstant;
17
-use ReflectionException;
18
-
19 16
 use Kenjis\MonkeyPatch\Patcher\ConstantPatcher;
20 17
 use Kenjis\MonkeyPatch\Patcher\Backtrace;
21 18
 use Kenjis\MonkeyPatch\MonkeyPatchManager;
22
-use Kenjis\MonkeyPatch\Cache;
23
-use Kenjis\MonkeyPatch\InvocationVerifier;
24 19
 
25 20
 class Proxy
26 21
 {
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/3.x/Patcher/FunctionPatcher.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,6 @@
 block discarded – undo
14 14
 require __DIR__ . '/FunctionPatcher/Proxy.php';
15 15
 
16 16
 use LogicException;
17
-
18 17
 use Kenjis\MonkeyPatch\Patcher\FunctionPatcher\NodeVisitor;
19 18
 
20 19
 class FunctionPatcher extends AbstractPatcher
Please login to merge, or discard this patch.
tests/_ci_phpunit_test/patcher/3.x/Patcher/FunctionPatcher/Proxy.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use LogicException;
16 16
 use ReflectionFunction;
17 17
 use ReflectionException;
18
-
19 18
 use Kenjis\MonkeyPatch\Patcher\FunctionPatcher;
20 19
 use Kenjis\MonkeyPatch\Patcher\Backtrace;
21 20
 use Kenjis\MonkeyPatch\MonkeyPatchManager;
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/patcher/3.x/Patcher/MethodPatcher.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,6 @@
 block discarded – undo
13 13
 require __DIR__ . '/MethodPatcher/NodeVisitor.php';
14 14
 require __DIR__ . '/MethodPatcher/PatchManager.php';
15 15
 
16
-use LogicException;
17
-
18 16
 use Kenjis\MonkeyPatch\Patcher\MethodPatcher\NodeVisitor;
19 17
 
20 18
 class MethodPatcher extends AbstractPatcher
Please login to merge, or discard this patch.
application/tests/_ci_phpunit_test/CIPHPUnitTest.php 1 patch
Spacing   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -33,39 +33,39 @@  discard block
 block discarded – undo
33 33
 		$cwd_backup = getcwd();
34 34
 
35 35
 		// Load autoloader for ci-phpunit-test
36
-		require __DIR__ . '/autoloader.php';
36
+		require __DIR__.'/autoloader.php';
37 37
 
38 38
 		// Autoloader for PHP-Parser
39 39
 		// Don't use `require`, because we may have required already
40 40
 		// in `patcher/bootstrap.php`
41 41
 		if (version_compare(PHP_VERSION, '5.5.0', '>=')) {
42
-			require_once __DIR__ . '/patcher/third_party/PHP-Parser-3.0.2/lib/bootstrap.php';
42
+			require_once __DIR__.'/patcher/third_party/PHP-Parser-3.0.2/lib/bootstrap.php';
43 43
 		} else {
44
-			require_once __DIR__ . '/patcher/third_party/PHP-Parser-2.1.1/lib/bootstrap.php';
44
+			require_once __DIR__.'/patcher/third_party/PHP-Parser-2.1.1/lib/bootstrap.php';
45 45
 		}
46 46
 
47
-		require APPPATH . '/tests/TestCase.php';
47
+		require APPPATH.'/tests/TestCase.php';
48 48
 
49
-		$db_test_case_file = APPPATH . '/tests/DbTestCase.php';
49
+		$db_test_case_file = APPPATH.'/tests/DbTestCase.php';
50 50
 		if (is_readable($db_test_case_file))
51 51
 		{
52 52
 			require $db_test_case_file;
53 53
 		}
54 54
 
55 55
 		// Replace a few Common functions
56
-		require __DIR__ . '/replacing/core/Common.php';
57
-		require BASEPATH . 'core/Common.php';
56
+		require __DIR__.'/replacing/core/Common.php';
57
+		require BASEPATH.'core/Common.php';
58 58
 
59 59
 		// Workaround for missing CodeIgniter's error handler
60 60
 		// See https://github.com/kenjis/ci-phpunit-test/issues/37
61 61
 		set_error_handler('_error_handler');
62 62
 
63 63
 		// Load new functions of CIPHPUnitTest
64
-		require __DIR__ . '/functions.php';
64
+		require __DIR__.'/functions.php';
65 65
 		// Load ci-phpunit-test CI_Loader
66
-		require __DIR__ . '/replacing/core/Loader.php';
66
+		require __DIR__.'/replacing/core/Loader.php';
67 67
 		// Load ci-phpunit-test CI_Input
68
-		require __DIR__ . '/replacing/core/Input.php';
68
+		require __DIR__.'/replacing/core/Input.php';
69 69
 
70 70
 		// Change current directroy
71 71
 		chdir(FCPATH);
@@ -77,12 +77,12 @@  discard block
 block discarded – undo
77 77
 		 *
78 78
 		 * And away we go...
79 79
 		 */
80
-		require __DIR__ . '/replacing/core/CodeIgniter.php';
80
+		require __DIR__.'/replacing/core/CodeIgniter.php';
81 81
 
82 82
 		self::replaceHelpers();
83 83
 
84 84
 		// Create CodeIgniter instance
85
-		if (! self::wiredesignzHmvcInstalled())
85
+		if ( ! self::wiredesignzHmvcInstalled())
86 86
 		{
87 87
 			new CI_Controller();
88 88
 		}
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 
104 104
 	public static function createCodeIgniterInstance()
105 105
 	{
106
-		if (! self::wiredesignzHmvcInstalled())
106
+		if ( ! self::wiredesignzHmvcInstalled())
107 107
 		{
108 108
 			new CI_Controller();
109 109
 		}
@@ -132,11 +132,11 @@  discard block
 block discarded – undo
132 132
 	protected static function replaceLoader()
133 133
 	{
134 134
 		$my_loader_file = 
135
-			APPPATH . 'core/' . config_item('subclass_prefix') . 'Loader.php';
135
+			APPPATH.'core/'.config_item('subclass_prefix').'Loader.php';
136 136
 
137 137
 		if (file_exists($my_loader_file))
138 138
 		{
139
-			self::$loader_class = config_item('subclass_prefix') . 'Loader';
139
+			self::$loader_class = config_item('subclass_prefix').'Loader';
140 140
 			if ( ! class_exists(self::$loader_class))
141 141
 			{
142 142
 				require $my_loader_file;
@@ -155,19 +155,19 @@  discard block
 block discarded – undo
155 155
 
156 156
 	protected static function loadHelper($helper)
157 157
 	{
158
-		$my_helper_file = APPPATH . 'helpers/' . config_item('subclass_prefix') . $helper . '.php';
158
+		$my_helper_file = APPPATH.'helpers/'.config_item('subclass_prefix').$helper.'.php';
159 159
 		if (file_exists($my_helper_file))
160 160
 		{
161 161
 			require $my_helper_file;
162 162
 		}
163
-		require __DIR__ . '/replacing/helpers/' . $helper . '.php';
163
+		require __DIR__.'/replacing/helpers/'.$helper.'.php';
164 164
 	}
165 165
 
166 166
 	public static function setPatcherCacheDir($dir = null)
167 167
 	{
168 168
 		if ($dir === null)
169 169
 		{
170
-			$dir = APPPATH . 'tests/_ci_phpunit_test/tmp/cache';
170
+			$dir = APPPATH.'tests/_ci_phpunit_test/tmp/cache';
171 171
 		}
172 172
 
173 173
 		MonkeyPatchManager::setCacheDir(
Please login to merge, or discard this patch.
tests/_ci_phpunit_test/patcher/3.x/Patcher/FunctionPatcher/NodeVisitor.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -36,17 +36,17 @@  discard block
 block discarded – undo
36 36
 {
37 37
 	public function leaveNode(Node $node)
38 38
 	{
39
-		if (! ($node instanceof FuncCall))
39
+		if ( ! ($node instanceof FuncCall))
40 40
 		{
41 41
 			return;
42 42
 		}
43 43
 
44
-		if (! ($node->name instanceof Name))
44
+		if ( ! ($node->name instanceof Name))
45 45
 		{
46 46
 			return;
47 47
 		}
48 48
 
49
-		if (! $node->name->isUnqualified())
49
+		if ( ! $node->name->isUnqualified())
50 50
 		{
51 51
 			return;
52 52
 		}
@@ -55,11 +55,11 @@  discard block
 block discarded – undo
55 55
 			FunctionPatcher::isWhitelisted((string) $node->name)
56 56
 			&& ! FunctionPatcher::isBlacklisted((string) $node->name)
57 57
 		) {
58
-			$replacement = new FullyQualified('\__FuncProxy__::' . (string) $node->name);
58
+			$replacement = new FullyQualified('\__FuncProxy__::'.(string) $node->name);
59 59
 
60 60
 			$pos = $node->getAttribute('startTokenPos');
61 61
 			FunctionPatcher::$replacement[$pos] = 
62
-				'\__FuncProxy__::' . (string) $node->name;
62
+				'\__FuncProxy__::'.(string) $node->name;
63 63
 
64 64
 			$node->name = $replacement;
65 65
 		}
Please login to merge, or discard this patch.