@@ -250,6 +250,9 @@ |
||
250 | 250 | return $this->createAndCallController($class, $method, $params); |
251 | 251 | } |
252 | 252 | |
253 | + /** |
|
254 | + * @param string $hook |
|
255 | + */ |
|
253 | 256 | protected function callHook($hook) |
254 | 257 | { |
255 | 258 | if ($this->enableHooks) |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Part of CI PHPUnit Test |
|
4 | - * |
|
5 | - * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | - * @license MIT License |
|
7 | - * @copyright 2015 Kenji Suzuki |
|
8 | - * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | - */ |
|
3 | + * Part of CI PHPUnit Test |
|
4 | + * |
|
5 | + * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | + * @license MIT License |
|
7 | + * @copyright 2015 Kenji Suzuki |
|
8 | + * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | require __DIR__ . '/Installer.php'; |
12 | 12 |
@@ -63,6 +63,9 @@ discard block |
||
63 | 63 | return self::$cache_dir; |
64 | 64 | } |
65 | 65 | |
66 | + /** |
|
67 | + * @param string $path |
|
68 | + */ |
|
66 | 69 | public static function getSrcCacheFilePath($path) |
67 | 70 | { |
68 | 71 | $len = strlen(self::$project_root); |
@@ -158,6 +161,9 @@ discard block |
||
158 | 161 | ); |
159 | 162 | } |
160 | 163 | |
164 | + /** |
|
165 | + * @param string $filename |
|
166 | + */ |
|
161 | 167 | protected static function writeTmpConfFile($filename, array $list) |
162 | 168 | { |
163 | 169 | $contents = implode("\n", $list); |
@@ -194,6 +200,9 @@ discard block |
||
194 | 200 | ); |
195 | 201 | } |
196 | 202 | |
203 | + /** |
|
204 | + * @param string $filename |
|
205 | + */ |
|
197 | 206 | protected static function getTmpConfFile($filename) |
198 | 207 | { |
199 | 208 | if (is_readable(self::$$filename)) |
@@ -1,12 +1,12 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Part of CI PHPUnit Test |
|
4 | - * |
|
5 | - * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | - * @license MIT License |
|
7 | - * @copyright 2015 Kenji Suzuki |
|
8 | - * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | - */ |
|
3 | + * Part of CI PHPUnit Test |
|
4 | + * |
|
5 | + * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | + * @license MIT License |
|
7 | + * @copyright 2015 Kenji Suzuki |
|
8 | + * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | namespace Kenjis\MonkeyPatch; |
12 | 12 | |
@@ -251,10 +251,10 @@ discard block |
||
251 | 251 | } |
252 | 252 | |
253 | 253 | /** |
254 | - * Recursive Unlink |
|
255 | - * |
|
256 | - * @param string $dir |
|
257 | - */ |
|
254 | + * Recursive Unlink |
|
255 | + * |
|
256 | + * @param string $dir |
|
257 | + */ |
|
258 | 258 | protected static function recursiveUnlink($dir) |
259 | 259 | { |
260 | 260 | if (! is_dir($dir)) |
@@ -21,7 +21,7 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param string $function function name |
23 | 23 | * @param mixed $return_value return value |
24 | - * @param string $class_name class::method to apply this patch |
|
24 | + * @param string $class_method class::method to apply this patch |
|
25 | 25 | */ |
26 | 26 | public static function patchFunction($function, $return_value, $class_method = null) |
27 | 27 | { |
@@ -55,6 +55,9 @@ discard block |
||
55 | 55 | PatchManager::clear(); |
56 | 56 | } |
57 | 57 | |
58 | + /** |
|
59 | + * @param string $class_method |
|
60 | + */ |
|
58 | 61 | protected static function getClassname($class_method) |
59 | 62 | { |
60 | 63 | if (strpos($class_method, '::') === false) |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Part of CI PHPUnit Test |
|
4 | - * |
|
5 | - * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | - * @license MIT License |
|
7 | - * @copyright 2015 Kenji Suzuki |
|
8 | - * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | - */ |
|
3 | + * Part of CI PHPUnit Test |
|
4 | + * |
|
5 | + * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | + * @license MIT License |
|
7 | + * @copyright 2015 Kenji Suzuki |
|
8 | + * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | require __DIR__ . '/Installer.php'; |
12 | 12 |
@@ -32,6 +32,9 @@ discard block |
||
32 | 32 | 'MethodPatcher', |
33 | 33 | ]; |
34 | 34 | |
35 | + /** |
|
36 | + * @param string $message |
|
37 | + */ |
|
35 | 38 | public static function log($message) |
36 | 39 | { |
37 | 40 | if (! self::$debug) |
@@ -276,6 +279,9 @@ discard block |
||
276 | 279 | self::$load_patchers = true; |
277 | 280 | } |
278 | 281 | |
282 | + /** |
|
283 | + * @param string $source |
|
284 | + */ |
|
279 | 285 | protected static function execPatchers($source) |
280 | 286 | { |
281 | 287 | $patched = false; |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Part of CI PHPUnit Test |
|
4 | - * |
|
5 | - * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | - * @license MIT License |
|
7 | - * @copyright 2015 Kenji Suzuki |
|
8 | - * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | - */ |
|
3 | + * Part of CI PHPUnit Test |
|
4 | + * |
|
5 | + * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | + * @license MIT License |
|
7 | + * @copyright 2015 Kenji Suzuki |
|
8 | + * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | require __DIR__ . '/Installer.php'; |
12 | 12 |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * |
38 | 38 | * @param string $function function name |
39 | 39 | * @param mixed $return_value return value or callable |
40 | - * @param string $class_name class::method to apply this patch |
|
40 | + * @param string $class_method class::method to apply this patch |
|
41 | 41 | * |
42 | 42 | * @throws LogicException |
43 | 43 | */ |
@@ -86,6 +86,9 @@ discard block |
||
86 | 86 | InvocationVerifier::verify(self::$expected_invocations, self::$invocations); |
87 | 87 | } |
88 | 88 | |
89 | + /** |
|
90 | + * @param string $function |
|
91 | + */ |
|
89 | 92 | protected static function logInvocation($function, $arguments) |
90 | 93 | { |
91 | 94 | if (MonkeyPatchManager::$debug) |
@@ -111,6 +114,9 @@ discard block |
||
111 | 114 | } |
112 | 115 | } |
113 | 116 | |
117 | + /** |
|
118 | + * @param string $function |
|
119 | + */ |
|
114 | 120 | protected static function checkCalledMethod($function) |
115 | 121 | { |
116 | 122 | $trace = debug_backtrace(); |
@@ -184,6 +190,9 @@ discard block |
||
184 | 190 | return call_user_func_array($function, $arguments); |
185 | 191 | } |
186 | 192 | |
193 | + /** |
|
194 | + * @param string $function |
|
195 | + */ |
|
187 | 196 | protected static function checkPassedByReference($function) |
188 | 197 | { |
189 | 198 | $ref_func = new ReflectionFunction($function); |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Part of CI PHPUnit Test |
|
4 | - * |
|
5 | - * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | - * @license MIT License |
|
7 | - * @copyright 2015 Kenji Suzuki |
|
8 | - * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | - */ |
|
3 | + * Part of CI PHPUnit Test |
|
4 | + * |
|
5 | + * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | + * @license MIT License |
|
7 | + * @copyright 2015 Kenji Suzuki |
|
8 | + * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | require __DIR__ . '/Installer.php'; |
12 | 12 |
@@ -136,6 +136,11 @@ discard block |
||
136 | 136 | return $_is_loaded; |
137 | 137 | } |
138 | 138 | |
139 | +/** |
|
140 | + * @param boolean $return |
|
141 | + * |
|
142 | + * @return boolean |
|
143 | + */ |
|
139 | 144 | function is_cli($return = null) |
140 | 145 | { |
141 | 146 | static $_return = TRUE; |
@@ -148,6 +153,9 @@ discard block |
||
148 | 153 | return $_return; |
149 | 154 | } |
150 | 155 | |
156 | +/** |
|
157 | + * @param string $message |
|
158 | + */ |
|
151 | 159 | function show_error($message, $status_code = 500, $heading = 'An Error Was Encountered') |
152 | 160 | { |
153 | 161 | $status_code = abs($status_code); |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Part of CI PHPUnit Test |
|
4 | - * |
|
5 | - * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | - * @license MIT License |
|
7 | - * @copyright 2015 Kenji Suzuki |
|
8 | - * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | - */ |
|
3 | + * Part of CI PHPUnit Test |
|
4 | + * |
|
5 | + * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | + * @license MIT License |
|
7 | + * @copyright 2015 Kenji Suzuki |
|
8 | + * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | require __DIR__ . '/Installer.php'; |
12 | 12 |
@@ -185,7 +185,7 @@ discard block |
||
185 | 185 | * @param string $library Library name |
186 | 186 | * @param array $params Optional parameters to pass to the library class constructor |
187 | 187 | * @param string $object_name An optional object name to assign to |
188 | - * @return object |
|
188 | + * @return CI_Loader |
|
189 | 189 | */ |
190 | 190 | public function library($library, $params = NULL, $object_name = NULL) |
191 | 191 | { |
@@ -229,7 +229,7 @@ discard block |
||
229 | 229 | * @param string $model Model name |
230 | 230 | * @param string $name An optional object name to assign to |
231 | 231 | * @param bool $db_conn An optional database connection configuration to initialize |
232 | - * @return object |
|
232 | + * @return CI_Loader |
|
233 | 233 | * |
234 | 234 | * modified by ci-phpunit-test |
235 | 235 | */ |
@@ -331,7 +331,7 @@ discard block |
||
331 | 331 | /** |
332 | 332 | * Database Loader |
333 | 333 | * |
334 | - * @param mixed $params Database configuration options |
|
334 | + * @param string|boolean $params Database configuration options |
|
335 | 335 | * @param bool $return Whether to return the database object |
336 | 336 | * @param bool $query_builder Whether to enable Query Builder |
337 | 337 | * (overrides the configuration setting) |
@@ -487,7 +487,7 @@ discard block |
||
487 | 487 | * An associative array or object containing values |
488 | 488 | * to be set, or a value's name if string |
489 | 489 | * @param string $val Value to set, only used if $vars is a string |
490 | - * @return object |
|
490 | + * @return CI_Loader |
|
491 | 491 | */ |
492 | 492 | public function vars($vars, $val = '') |
493 | 493 | { |
@@ -559,7 +559,7 @@ discard block |
||
559 | 559 | * Helper Loader |
560 | 560 | * |
561 | 561 | * @param string|string[] $helpers Helper name(s) |
562 | - * @return object |
|
562 | + * @return CI_Loader |
|
563 | 563 | */ |
564 | 564 | public function helper($helpers = array()) |
565 | 565 | { |
@@ -630,7 +630,7 @@ discard block |
||
630 | 630 | * |
631 | 631 | * @uses CI_Loader::helper() |
632 | 632 | * @param string|string[] $helpers Helper name(s) |
633 | - * @return object |
|
633 | + * @return CI_Loader |
|
634 | 634 | */ |
635 | 635 | public function helpers($helpers = array()) |
636 | 636 | { |
@@ -646,7 +646,7 @@ discard block |
||
646 | 646 | * |
647 | 647 | * @param string|string[] $files List of language file names to load |
648 | 648 | * @param string Language name |
649 | - * @return object |
|
649 | + * @return CI_Loader |
|
650 | 650 | */ |
651 | 651 | public function language($files, $lang = '') |
652 | 652 | { |
@@ -733,7 +733,7 @@ discard block |
||
733 | 733 | * |
734 | 734 | * @param string $path Path to add |
735 | 735 | * @param bool $view_cascade (default: TRUE) |
736 | - * @return object |
|
736 | + * @return CI_Loader |
|
737 | 737 | */ |
738 | 738 | public function add_package_path($path, $view_cascade = TRUE) |
739 | 739 | { |
@@ -777,7 +777,7 @@ discard block |
||
777 | 777 | * added path will be removed removed. |
778 | 778 | * |
779 | 779 | * @param string $path Path to remove |
780 | - * @return object |
|
780 | + * @return CI_Loader |
|
781 | 781 | */ |
782 | 782 | public function remove_package_path($path = '') |
783 | 783 | { |
@@ -1065,7 +1065,7 @@ discard block |
||
1065 | 1065 | * @used-by CI_Loader::_ci_load_library() |
1066 | 1066 | * @uses CI_Loader::_ci_init_library() |
1067 | 1067 | * |
1068 | - * @param string $library Library name to load |
|
1068 | + * @param string $library_name Library name to load |
|
1069 | 1069 | * @param string $file_path Path to the library filename, relative to libraries/ |
1070 | 1070 | * @param mixed $params Optional parameters to pass to the class constructor |
1071 | 1071 | * @param string $object_name Optional object name to assign to |
@@ -1,40 +1,40 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * CodeIgniter |
|
4 | - * |
|
5 | - * An open source application development framework for PHP |
|
6 | - * |
|
7 | - * This content is released under the MIT License (MIT) |
|
8 | - * |
|
9 | - * Copyright (c) 2014 - 2015, British Columbia Institute of Technology |
|
10 | - * |
|
11 | - * Permission is hereby granted, free of charge, to any person obtaining a copy |
|
12 | - * of this software and associated documentation files (the "Software"), to deal |
|
13 | - * in the Software without restriction, including without limitation the rights |
|
14 | - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
15 | - * copies of the Software, and to permit persons to whom the Software is |
|
16 | - * furnished to do so, subject to the following conditions: |
|
17 | - * |
|
18 | - * The above copyright notice and this permission notice shall be included in |
|
19 | - * all copies or substantial portions of the Software. |
|
20 | - * |
|
21 | - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
22 | - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
23 | - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
24 | - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
25 | - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
26 | - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
27 | - * THE SOFTWARE. |
|
28 | - * |
|
29 | - * @package CodeIgniter |
|
30 | - * @author EllisLab Dev Team |
|
31 | - * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/) |
|
32 | - * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/) |
|
33 | - * @license http://opensource.org/licenses/MIT MIT License |
|
34 | - * @link http://codeigniter.com |
|
35 | - * @since Version 1.0.0 |
|
36 | - * @filesource |
|
37 | - */ |
|
3 | + * CodeIgniter |
|
4 | + * |
|
5 | + * An open source application development framework for PHP |
|
6 | + * |
|
7 | + * This content is released under the MIT License (MIT) |
|
8 | + * |
|
9 | + * Copyright (c) 2014 - 2015, British Columbia Institute of Technology |
|
10 | + * |
|
11 | + * Permission is hereby granted, free of charge, to any person obtaining a copy |
|
12 | + * of this software and associated documentation files (the "Software"), to deal |
|
13 | + * in the Software without restriction, including without limitation the rights |
|
14 | + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell |
|
15 | + * copies of the Software, and to permit persons to whom the Software is |
|
16 | + * furnished to do so, subject to the following conditions: |
|
17 | + * |
|
18 | + * The above copyright notice and this permission notice shall be included in |
|
19 | + * all copies or substantial portions of the Software. |
|
20 | + * |
|
21 | + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
|
22 | + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
|
23 | + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
|
24 | + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
|
25 | + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, |
|
26 | + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN |
|
27 | + * THE SOFTWARE. |
|
28 | + * |
|
29 | + * @package CodeIgniter |
|
30 | + * @author EllisLab Dev Team |
|
31 | + * @copyright Copyright (c) 2008 - 2014, EllisLab, Inc. (http://ellislab.com/) |
|
32 | + * @copyright Copyright (c) 2014 - 2015, British Columbia Institute of Technology (http://bcit.ca/) |
|
33 | + * @license http://opensource.org/licenses/MIT MIT License |
|
34 | + * @link http://codeigniter.com |
|
35 | + * @since Version 1.0.0 |
|
36 | + * @filesource |
|
37 | + */ |
|
38 | 38 | defined('BASEPATH') OR exit('No direct script access allowed'); |
39 | 39 | |
40 | 40 | /** |
@@ -10,108 +10,108 @@ |
||
10 | 10 | |
11 | 11 | class Installer |
12 | 12 | { |
13 | - const TEST_FOLDER = 'application/tests'; |
|
13 | + const TEST_FOLDER = 'application/tests'; |
|
14 | 14 | |
15 | - public static function install() |
|
16 | - { |
|
17 | - self::recursiveCopy( |
|
18 | - 'vendor/kenjis/ci-phpunit-test/application/tests', |
|
19 | - static::TEST_FOLDER |
|
20 | - ); |
|
21 | - self::fixPath(); |
|
22 | - } |
|
15 | + public static function install() |
|
16 | + { |
|
17 | + self::recursiveCopy( |
|
18 | + 'vendor/kenjis/ci-phpunit-test/application/tests', |
|
19 | + static::TEST_FOLDER |
|
20 | + ); |
|
21 | + self::fixPath(); |
|
22 | + } |
|
23 | 23 | |
24 | - /** |
|
25 | - * Fix paths in Bootstrap.php |
|
26 | - */ |
|
27 | - private static function fixPath() |
|
28 | - { |
|
29 | - $file = static::TEST_FOLDER . '/Bootstrap.php'; |
|
30 | - $contents = file_get_contents($file); |
|
24 | + /** |
|
25 | + * Fix paths in Bootstrap.php |
|
26 | + */ |
|
27 | + private static function fixPath() |
|
28 | + { |
|
29 | + $file = static::TEST_FOLDER . '/Bootstrap.php'; |
|
30 | + $contents = file_get_contents($file); |
|
31 | 31 | |
32 | - if (! file_exists('system')) { |
|
33 | - if (file_exists('vendor/codeigniter/framework/system')) { |
|
34 | - $contents = str_replace( |
|
35 | - '$system_path = \'../../system\';', |
|
36 | - '$system_path = \'../../vendor/codeigniter/framework/system\';', |
|
37 | - $contents |
|
38 | - ); |
|
39 | - } else { |
|
40 | - throw new Exception('Can\'t find "system" folder.'); |
|
41 | - } |
|
42 | - } |
|
32 | + if (! file_exists('system')) { |
|
33 | + if (file_exists('vendor/codeigniter/framework/system')) { |
|
34 | + $contents = str_replace( |
|
35 | + '$system_path = \'../../system\';', |
|
36 | + '$system_path = \'../../vendor/codeigniter/framework/system\';', |
|
37 | + $contents |
|
38 | + ); |
|
39 | + } else { |
|
40 | + throw new Exception('Can\'t find "system" folder.'); |
|
41 | + } |
|
42 | + } |
|
43 | 43 | |
44 | - if (! file_exists('index.php')) { |
|
45 | - if (file_exists('public/index.php')) { |
|
46 | - $contents = str_replace( |
|
47 | - "define('FCPATH', realpath(dirname(__FILE__).'/../..').'/');", |
|
48 | - "define('FCPATH', realpath(dirname(__FILE__).'/../../public').'/');", |
|
49 | - $contents |
|
50 | - ); |
|
51 | - } else { |
|
52 | - throw new Exception('Can\'t find "index.php".'); |
|
53 | - } |
|
54 | - } |
|
44 | + if (! file_exists('index.php')) { |
|
45 | + if (file_exists('public/index.php')) { |
|
46 | + $contents = str_replace( |
|
47 | + "define('FCPATH', realpath(dirname(__FILE__).'/../..').'/');", |
|
48 | + "define('FCPATH', realpath(dirname(__FILE__).'/../../public').'/');", |
|
49 | + $contents |
|
50 | + ); |
|
51 | + } else { |
|
52 | + throw new Exception('Can\'t find "index.php".'); |
|
53 | + } |
|
54 | + } |
|
55 | 55 | |
56 | - file_put_contents($file, $contents); |
|
57 | - } |
|
56 | + file_put_contents($file, $contents); |
|
57 | + } |
|
58 | 58 | |
59 | - public static function update() |
|
60 | - { |
|
61 | - self::recursiveUnlink('application/tests/_ci_phpunit_test'); |
|
62 | - self::recursiveCopy( |
|
63 | - 'vendor/kenjis/ci-phpunit-test/application/tests/_ci_phpunit_test', |
|
64 | - 'application/tests/_ci_phpunit_test' |
|
65 | - ); |
|
66 | - } |
|
59 | + public static function update() |
|
60 | + { |
|
61 | + self::recursiveUnlink('application/tests/_ci_phpunit_test'); |
|
62 | + self::recursiveCopy( |
|
63 | + 'vendor/kenjis/ci-phpunit-test/application/tests/_ci_phpunit_test', |
|
64 | + 'application/tests/_ci_phpunit_test' |
|
65 | + ); |
|
66 | + } |
|
67 | 67 | |
68 | - /** |
|
69 | - * Recursive Copy |
|
70 | - * |
|
71 | - * @param string $src |
|
72 | - * @param string $dst |
|
73 | - */ |
|
74 | - private static function recursiveCopy($src, $dst) |
|
75 | - { |
|
76 | - @mkdir($dst, 0755); |
|
68 | + /** |
|
69 | + * Recursive Copy |
|
70 | + * |
|
71 | + * @param string $src |
|
72 | + * @param string $dst |
|
73 | + */ |
|
74 | + private static function recursiveCopy($src, $dst) |
|
75 | + { |
|
76 | + @mkdir($dst, 0755); |
|
77 | 77 | |
78 | - $iterator = new \RecursiveIteratorIterator( |
|
79 | - new \RecursiveDirectoryIterator($src, \RecursiveDirectoryIterator::SKIP_DOTS), |
|
80 | - \RecursiveIteratorIterator::SELF_FIRST |
|
81 | - ); |
|
78 | + $iterator = new \RecursiveIteratorIterator( |
|
79 | + new \RecursiveDirectoryIterator($src, \RecursiveDirectoryIterator::SKIP_DOTS), |
|
80 | + \RecursiveIteratorIterator::SELF_FIRST |
|
81 | + ); |
|
82 | 82 | |
83 | - foreach ($iterator as $file) { |
|
84 | - if ($file->isDir()) { |
|
85 | - @mkdir($dst . '/' . $iterator->getSubPathName()); |
|
86 | - } else { |
|
87 | - $success = copy($file, $dst . '/' . $iterator->getSubPathName()); |
|
88 | - if ($success) { |
|
89 | - echo 'copied: ' . $dst . '/' . $iterator->getSubPathName() . PHP_EOL; |
|
90 | - } |
|
91 | - } |
|
92 | - } |
|
93 | - } |
|
83 | + foreach ($iterator as $file) { |
|
84 | + if ($file->isDir()) { |
|
85 | + @mkdir($dst . '/' . $iterator->getSubPathName()); |
|
86 | + } else { |
|
87 | + $success = copy($file, $dst . '/' . $iterator->getSubPathName()); |
|
88 | + if ($success) { |
|
89 | + echo 'copied: ' . $dst . '/' . $iterator->getSubPathName() . PHP_EOL; |
|
90 | + } |
|
91 | + } |
|
92 | + } |
|
93 | + } |
|
94 | 94 | |
95 | - /** |
|
96 | - * Recursive Unlink |
|
97 | - * |
|
98 | - * @param string $dir |
|
99 | - */ |
|
100 | - private static function recursiveUnlink($dir) |
|
101 | - { |
|
102 | - $iterator = new \RecursiveIteratorIterator( |
|
103 | - new \RecursiveDirectoryIterator($dir, \RecursiveDirectoryIterator::SKIP_DOTS), |
|
104 | - \RecursiveIteratorIterator::CHILD_FIRST |
|
105 | - ); |
|
95 | + /** |
|
96 | + * Recursive Unlink |
|
97 | + * |
|
98 | + * @param string $dir |
|
99 | + */ |
|
100 | + private static function recursiveUnlink($dir) |
|
101 | + { |
|
102 | + $iterator = new \RecursiveIteratorIterator( |
|
103 | + new \RecursiveDirectoryIterator($dir, \RecursiveDirectoryIterator::SKIP_DOTS), |
|
104 | + \RecursiveIteratorIterator::CHILD_FIRST |
|
105 | + ); |
|
106 | 106 | |
107 | - foreach ($iterator as $file) { |
|
108 | - if ($file->isDir()) { |
|
109 | - rmdir($file); |
|
110 | - } else { |
|
111 | - unlink($file); |
|
112 | - } |
|
113 | - } |
|
107 | + foreach ($iterator as $file) { |
|
108 | + if ($file->isDir()) { |
|
109 | + rmdir($file); |
|
110 | + } else { |
|
111 | + unlink($file); |
|
112 | + } |
|
113 | + } |
|
114 | 114 | |
115 | - rmdir($dir); |
|
116 | - } |
|
115 | + rmdir($dir); |
|
116 | + } |
|
117 | 117 | } |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * Part of CI PHPUnit Test |
|
4 | - * |
|
5 | - * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | - * @license MIT License |
|
7 | - * @copyright 2015 Kenji Suzuki |
|
8 | - * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | - */ |
|
3 | + * Part of CI PHPUnit Test |
|
4 | + * |
|
5 | + * @author Kenji Suzuki <https://github.com/kenjis> |
|
6 | + * @license MIT License |
|
7 | + * @copyright 2015 Kenji Suzuki |
|
8 | + * @link https://github.com/kenjis/ci-phpunit-test |
|
9 | + */ |
|
10 | 10 | |
11 | 11 | require __DIR__ . '/Installer.php'; |
12 | 12 |