@@ -15,8 +15,8 @@ discard block |
||
15 | 15 | public static function install($app = 'application') |
16 | 16 | { |
17 | 17 | self::recursiveCopy( |
18 | - dirname(__FILE__) . '/application/tests', |
|
19 | - $app . '/' . static::TEST_FOLDER |
|
18 | + dirname(__FILE__).'/application/tests', |
|
19 | + $app.'/'.static::TEST_FOLDER |
|
20 | 20 | ); |
21 | 21 | self::fixPath($app); |
22 | 22 | } |
@@ -26,10 +26,10 @@ discard block |
||
26 | 26 | */ |
27 | 27 | private static function fixPath($app = 'application') |
28 | 28 | { |
29 | - $file = $app . '/' . static::TEST_FOLDER . '/Bootstrap.php'; |
|
29 | + $file = $app.'/'.static::TEST_FOLDER.'/Bootstrap.php'; |
|
30 | 30 | $contents = file_get_contents($file); |
31 | 31 | |
32 | - if (! file_exists('system')) { |
|
32 | + if ( ! file_exists('system')) { |
|
33 | 33 | if (file_exists('vendor/codeigniter/framework/system')) { |
34 | 34 | $contents = str_replace( |
35 | 35 | '$system_path = \'../../system\';', |
@@ -41,14 +41,14 @@ discard block |
||
41 | 41 | } |
42 | 42 | } |
43 | 43 | |
44 | - if (! file_exists('index.php')) { |
|
44 | + if ( ! file_exists('index.php')) { |
|
45 | 45 | if (file_exists('public/index.php')) { |
46 | 46 | $contents = str_replace( |
47 | 47 | "define('FCPATH', realpath(dirname(__FILE__).'/../..').'/');", |
48 | 48 | "define('FCPATH', realpath(dirname(__FILE__).'/../../public').'/');", |
49 | 49 | $contents |
50 | 50 | ); |
51 | - } elseif (file_exists($app . '/public/index.php')) { |
|
51 | + } elseif (file_exists($app.'/public/index.php')) { |
|
52 | 52 | $contents = str_replace( |
53 | 53 | "define('FCPATH', realpath(dirname(__FILE__).'/../..').'/');", |
54 | 54 | "define('FCPATH', realpath(dirname(__FILE__).'/../public').'/');", |
@@ -71,10 +71,10 @@ discard block |
||
71 | 71 | |
72 | 72 | public static function update($app = 'application') |
73 | 73 | { |
74 | - $target_dir = $app . '/' . static::TEST_FOLDER . '/_ci_phpunit_test'; |
|
74 | + $target_dir = $app.'/'.static::TEST_FOLDER.'/_ci_phpunit_test'; |
|
75 | 75 | self::recursiveUnlink($target_dir); |
76 | 76 | self::recursiveCopy( |
77 | - dirname(__FILE__) . '/application/tests/_ci_phpunit_test', |
|
77 | + dirname(__FILE__).'/application/tests/_ci_phpunit_test', |
|
78 | 78 | $target_dir |
79 | 79 | ); |
80 | 80 | } |
@@ -96,11 +96,11 @@ discard block |
||
96 | 96 | |
97 | 97 | foreach ($iterator as $file) { |
98 | 98 | if ($file->isDir()) { |
99 | - @mkdir($dst . '/' . $iterator->getSubPathName()); |
|
99 | + @mkdir($dst.'/'.$iterator->getSubPathName()); |
|
100 | 100 | } else { |
101 | - $success = copy($file, $dst . '/' . $iterator->getSubPathName()); |
|
101 | + $success = copy($file, $dst.'/'.$iterator->getSubPathName()); |
|
102 | 102 | if ($success) { |
103 | - echo 'copied: ' . $dst . '/' . $iterator->getSubPathName() . PHP_EOL; |
|
103 | + echo 'copied: '.$dst.'/'.$iterator->getSubPathName().PHP_EOL; |
|
104 | 104 | } |
105 | 105 | } |
106 | 106 | } |