@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * |
16 | 16 | * @param array $data |
17 | 17 | */ |
18 | - public function __construct( array $data = [] ) |
|
18 | + public function __construct(array $data = []) |
|
19 | 19 | { |
20 | 20 | $this->data = $data; |
21 | 21 | } |
@@ -26,16 +26,16 @@ discard block |
||
26 | 26 | * |
27 | 27 | * @return array|mixed|null |
28 | 28 | */ |
29 | - public function safeGet( array $target, $indices ) |
|
29 | + public function safeGet(array $target, $indices) |
|
30 | 30 | { |
31 | 31 | $movingTarget = $target; |
32 | 32 | |
33 | - foreach ( $indices as $index ) |
|
33 | + foreach ($indices as $index) |
|
34 | 34 | { |
35 | - $isArray = is_array( $movingTarget ) || $movingTarget instanceof ArrayAccess; |
|
36 | - if ( ! $isArray || ! isset( $movingTarget[ $index ] ) ) return NULL; |
|
35 | + $isArray = is_array($movingTarget) || $movingTarget instanceof ArrayAccess; |
|
36 | + if (!$isArray || !isset($movingTarget[$index])) return NULL; |
|
37 | 37 | |
38 | - $movingTarget = $movingTarget[ $index ]; |
|
38 | + $movingTarget = $movingTarget[$index]; |
|
39 | 39 | } |
40 | 40 | |
41 | 41 | return $movingTarget; |
@@ -46,9 +46,9 @@ discard block |
||
46 | 46 | * |
47 | 47 | * @return array|mixed|null |
48 | 48 | */ |
49 | - public function getKeys( array $keys ) |
|
49 | + public function getKeys(array $keys) |
|
50 | 50 | { |
51 | - return static::safeGet( $this->data, $keys ); |
|
51 | + return static::safeGet($this->data, $keys); |
|
52 | 52 | } |
53 | 53 | |
54 | 54 | /** |
@@ -60,9 +60,9 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @return array|mixed|null |
62 | 62 | */ |
63 | - public function get( $accessString ) |
|
63 | + public function get($accessString) |
|
64 | 64 | { |
65 | - return $this->getKeys( $this->parseDotNotation( $accessString ) ); |
|
65 | + return $this->getKeys($this->parseDotNotation($accessString)); |
|
66 | 66 | } |
67 | 67 | |
68 | 68 | /** |
@@ -71,29 +71,29 @@ discard block |
||
71 | 71 | * |
72 | 72 | * @return $this |
73 | 73 | */ |
74 | - public function set( $propString, $value ) |
|
74 | + public function set($propString, $value) |
|
75 | 75 | { |
76 | 76 | $movingTarget = &$this->data; |
77 | - $keys = $this->parseDotNotation( $propString ); |
|
78 | - $length = count( $keys ); |
|
77 | + $keys = $this->parseDotNotation($propString); |
|
78 | + $length = count($keys); |
|
79 | 79 | |
80 | - foreach ( $keys as $i => $key ) |
|
80 | + foreach ($keys as $i => $key) |
|
81 | 81 | { |
82 | - $lastKey = $i === $length - 1; |
|
83 | - $isset = isset( $movingTarget[ $key ] ); |
|
82 | + $lastKey = $i===$length-1; |
|
83 | + $isset = isset($movingTarget[$key]); |
|
84 | 84 | |
85 | - if ( $isset && ! $lastKey && ! is_array( $movingTarget[ $key ] ) ) |
|
85 | + if ($isset && !$lastKey && !is_array($movingTarget[$key])) |
|
86 | 86 | { |
87 | - throw new InvalidArgumentException( sprintf( |
|
87 | + throw new InvalidArgumentException(sprintf( |
|
88 | 88 | "Attempted to set/access the property %s like an array, but is of type: %s", |
89 | 89 | $key, |
90 | - gettype( $movingTarget[ $key ] ) |
|
91 | - ) ); |
|
90 | + gettype($movingTarget[$key]) |
|
91 | + )); |
|
92 | 92 | } |
93 | 93 | |
94 | - if ( ! $isset || ! is_array( $movingTarget[ $key ] ) ) $movingTarget[ $key ] = []; |
|
94 | + if (!$isset || !is_array($movingTarget[$key])) $movingTarget[$key] = []; |
|
95 | 95 | |
96 | - $movingTarget = &$movingTarget[ $key ]; |
|
96 | + $movingTarget = &$movingTarget[$key]; |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | $movingTarget = $value; |
@@ -106,9 +106,9 @@ discard block |
||
106 | 106 | * |
107 | 107 | * @return array |
108 | 108 | */ |
109 | - protected function parseDotNotation( $string ) |
|
109 | + protected function parseDotNotation($string) |
|
110 | 110 | { |
111 | - return explode( '.', strval( $string ) ); |
|
111 | + return explode('.', strval($string)); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | /** |
@@ -125,9 +125,9 @@ discard block |
||
125 | 125 | * |
126 | 126 | * @return string |
127 | 127 | */ |
128 | - public function toJson( $options = 0, $depth = 512 ) |
|
128 | + public function toJson($options = 0, $depth = 512) |
|
129 | 129 | { |
130 | - return json_encode( $this, $options, $depth ); |
|
130 | + return json_encode($this, $options, $depth); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | /** |
@@ -135,9 +135,9 @@ discard block |
||
135 | 135 | * |
136 | 136 | * @return static |
137 | 137 | */ |
138 | - public static function newFromArray( array $data ) |
|
138 | + public static function newFromArray(array $data) |
|
139 | 139 | { |
140 | - return new static( $data ); |
|
140 | + return new static($data); |
|
141 | 141 | } |
142 | 142 | |
143 | 143 | /** |
@@ -145,9 +145,9 @@ discard block |
||
145 | 145 | * |
146 | 146 | * @return static |
147 | 147 | */ |
148 | - public static function newFromStdObject( \stdClass $data ) |
|
148 | + public static function newFromStdObject(\stdClass $data) |
|
149 | 149 | { |
150 | - return new static( json_decode( json_encode( $data ), TRUE ) ); |
|
150 | + return new static(json_decode(json_encode($data), TRUE)); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | /** |
@@ -176,17 +176,17 @@ discard block |
||
176 | 176 | * The return value will be casted to boolean if non-boolean was returned. |
177 | 177 | * @since 5.0.0 |
178 | 178 | */ |
179 | - public function offsetExists( $offset ) |
|
179 | + public function offsetExists($offset) |
|
180 | 180 | { |
181 | 181 | $movingTarget = $this->data; |
182 | 182 | |
183 | - foreach ( $this->parseDotNotation( $offset ) as $i ) |
|
183 | + foreach ($this->parseDotNotation($offset) as $i) |
|
184 | 184 | { |
185 | - if ( ! isset( $movingTarget[ $i ] ) ) return FALSE; |
|
186 | - $movingTarget = $movingTarget[ $i ]; |
|
185 | + if (!isset($movingTarget[$i])) return FALSE; |
|
186 | + $movingTarget = $movingTarget[$i]; |
|
187 | 187 | } |
188 | 188 | |
189 | - return isset( $movingTarget ); |
|
189 | + return isset($movingTarget); |
|
190 | 190 | } |
191 | 191 | |
192 | 192 | /** |
@@ -200,9 +200,9 @@ discard block |
||
200 | 200 | * @return mixed Can return all value types. |
201 | 201 | * @since 5.0.0 |
202 | 202 | */ |
203 | - public function offsetGet( $offset ) |
|
203 | + public function offsetGet($offset) |
|
204 | 204 | { |
205 | - return $this->get( $offset ); |
|
205 | + return $this->get($offset); |
|
206 | 206 | } |
207 | 207 | |
208 | 208 | /** |
@@ -219,9 +219,9 @@ discard block |
||
219 | 219 | * @return void |
220 | 220 | * @since 5.0.0 |
221 | 221 | */ |
222 | - public function offsetSet( $offset, $value ) |
|
222 | + public function offsetSet($offset, $value) |
|
223 | 223 | { |
224 | - $this->set( $offset, $value ); |
|
224 | + $this->set($offset, $value); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | /** |
@@ -235,21 +235,21 @@ discard block |
||
235 | 235 | * @return void |
236 | 236 | * @since 5.0.0 |
237 | 237 | */ |
238 | - public function offsetUnset( $offset ) |
|
238 | + public function offsetUnset($offset) |
|
239 | 239 | { |
240 | 240 | $movingTarget = &$this->data; |
241 | - $keys = $this->parseDotNotation( $offset ); |
|
242 | - $length = count( $keys ); |
|
241 | + $keys = $this->parseDotNotation($offset); |
|
242 | + $length = count($keys); |
|
243 | 243 | |
244 | - foreach ( $keys as $i => $key ) |
|
244 | + foreach ($keys as $i => $key) |
|
245 | 245 | { |
246 | - if ( $i === $length - 1 ) |
|
246 | + if ($i===$length-1) |
|
247 | 247 | { |
248 | - unset( $movingTarget[ $key ] ); |
|
248 | + unset($movingTarget[$key]); |
|
249 | 249 | } |
250 | 250 | else |
251 | 251 | { |
252 | - $movingTarget = &$movingTarget[ $key ]; |
|
252 | + $movingTarget = &$movingTarget[$key]; |
|
253 | 253 | } |
254 | 254 | } |
255 | 255 | } |
@@ -259,6 +259,6 @@ discard block |
||
259 | 259 | */ |
260 | 260 | public function __toString() |
261 | 261 | { |
262 | - return json_encode( $this ); |
|
262 | + return json_encode($this); |
|
263 | 263 | } |
264 | 264 | } |
265 | 265 | \ No newline at end of file |
@@ -33,7 +33,9 @@ discard block |
||
33 | 33 | foreach ( $indices as $index ) |
34 | 34 | { |
35 | 35 | $isArray = is_array( $movingTarget ) || $movingTarget instanceof ArrayAccess; |
36 | - if ( ! $isArray || ! isset( $movingTarget[ $index ] ) ) return NULL; |
|
36 | + if ( ! $isArray || ! isset( $movingTarget[ $index ] ) ) { |
|
37 | + return NULL; |
|
38 | + } |
|
37 | 39 | |
38 | 40 | $movingTarget = $movingTarget[ $index ]; |
39 | 41 | } |
@@ -91,7 +93,9 @@ discard block |
||
91 | 93 | ) ); |
92 | 94 | } |
93 | 95 | |
94 | - if ( ! $isset || ! is_array( $movingTarget[ $key ] ) ) $movingTarget[ $key ] = []; |
|
96 | + if ( ! $isset || ! is_array( $movingTarget[ $key ] ) ) { |
|
97 | + $movingTarget[ $key ] = []; |
|
98 | + } |
|
95 | 99 | |
96 | 100 | $movingTarget = &$movingTarget[ $key ]; |
97 | 101 | } |
@@ -182,7 +186,9 @@ discard block |
||
182 | 186 | |
183 | 187 | foreach ( $this->parseDotNotation( $offset ) as $i ) |
184 | 188 | { |
185 | - if ( ! isset( $movingTarget[ $i ] ) ) return FALSE; |
|
189 | + if ( ! isset( $movingTarget[ $i ] ) ) { |
|
190 | + return FALSE; |
|
191 | + } |
|
186 | 192 | $movingTarget = $movingTarget[ $i ]; |
187 | 193 | } |
188 | 194 | |
@@ -246,8 +252,7 @@ discard block |
||
246 | 252 | if ( $i === $length - 1 ) |
247 | 253 | { |
248 | 254 | unset( $movingTarget[ $key ] ); |
249 | - } |
|
250 | - else |
|
255 | + } else |
|
251 | 256 | { |
252 | 257 | $movingTarget = &$movingTarget[ $key ]; |
253 | 258 | } |
@@ -130,7 +130,7 @@ discard block |
||
130 | 130 | $path = realpath($path) ?: $path; |
131 | 131 | $tempPath = tempnam(dirname($path), basename($path)); |
132 | 132 | // Fix permissions of tempPath because `tempnam()` creates it with permissions set to 0600... |
133 | - chmod($tempPath, 0777 - umask()); |
|
133 | + chmod($tempPath, 0777-umask()); |
|
134 | 134 | file_put_contents($tempPath, $content); |
135 | 135 | rename($tempPath, $path); |
136 | 136 | } |
@@ -189,7 +189,7 @@ discard block |
||
189 | 189 | $success = true; |
190 | 190 | foreach ($paths as $path) { |
191 | 191 | try { |
192 | - if (! @unlink($path)) { |
|
192 | + if (!@unlink($path)) { |
|
193 | 193 | $success = false; |
194 | 194 | } |
195 | 195 | } catch (ErrorException $e) { |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | */ |
233 | 233 | public function link($target, $link) |
234 | 234 | { |
235 | - if (! windows_os()) { |
|
235 | + if (!windows_os()) { |
|
236 | 236 | return symlink($target, $link); |
237 | 237 | } |
238 | 238 | $mode = $this->isDirectory($target) ? 'J' : 'H'; |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | public function files($directory, $hidden = false) |
394 | 394 | { |
395 | 395 | return iterator_to_array( |
396 | - Finder::create()->files()->ignoreDotFiles(! $hidden)->in($directory)->depth(0)->sortByName(), |
|
396 | + Finder::create()->files()->ignoreDotFiles(!$hidden)->in($directory)->depth(0)->sortByName(), |
|
397 | 397 | false |
398 | 398 | ); |
399 | 399 | } |
@@ -408,7 +408,7 @@ discard block |
||
408 | 408 | public function allFiles($directory, $hidden = false) |
409 | 409 | { |
410 | 410 | return iterator_to_array( |
411 | - Finder::create()->files()->ignoreDotFiles(! $hidden)->in($directory)->sortByName(), |
|
411 | + Finder::create()->files()->ignoreDotFiles(!$hidden)->in($directory)->sortByName(), |
|
412 | 412 | false |
413 | 413 | ); |
414 | 414 | } |
@@ -455,10 +455,10 @@ discard block |
||
455 | 455 | */ |
456 | 456 | public function moveDirectory($from, $to, $overwrite = false) |
457 | 457 | { |
458 | - if ($overwrite && $this->isDirectory($to) && ! $this->deleteDirectory($to)) { |
|
458 | + if ($overwrite && $this->isDirectory($to) && !$this->deleteDirectory($to)) { |
|
459 | 459 | return false; |
460 | 460 | } |
461 | - return @rename($from, $to) === true; |
|
461 | + return @rename($from, $to)===true; |
|
462 | 462 | } |
463 | 463 | |
464 | 464 | /** |
@@ -471,14 +471,14 @@ discard block |
||
471 | 471 | */ |
472 | 472 | public function copyDirectory($directory, $destination, $options = null) |
473 | 473 | { |
474 | - if (! $this->isDirectory($directory)) { |
|
474 | + if (!$this->isDirectory($directory)) { |
|
475 | 475 | return false; |
476 | 476 | } |
477 | 477 | $options = $options ?: FilesystemIterator::SKIP_DOTS; |
478 | 478 | // If the destination directory does not actually exist, we will go ahead and |
479 | 479 | // create it recursively, which just gets the destination prepared to copy |
480 | 480 | // the files over. Once we make the directory we'll proceed the copying. |
481 | - if (! $this->isDirectory($destination)) { |
|
481 | + if (!$this->isDirectory($destination)) { |
|
482 | 482 | $this->makeDirectory($destination, 0777, true); |
483 | 483 | } |
484 | 484 | $items = new FilesystemIterator($directory, $options); |
@@ -489,7 +489,7 @@ discard block |
||
489 | 489 | $target = $destination.'/'.$item->getBasename(); |
490 | 490 | if ($item->isDir()) { |
491 | 491 | $path = $item->getPathname(); |
492 | - if (! $this->copyDirectory($path, $target, $options)) { |
|
492 | + if (!$this->copyDirectory($path, $target, $options)) { |
|
493 | 493 | return false; |
494 | 494 | } |
495 | 495 | } |
@@ -497,7 +497,7 @@ discard block |
||
497 | 497 | // location and keep looping. If for some reason the copy fails we'll bail out |
498 | 498 | // and return false, so the developer is aware that the copy process failed. |
499 | 499 | else { |
500 | - if (! $this->copy($item->getPathname(), $target)) { |
|
500 | + if (!$this->copy($item->getPathname(), $target)) { |
|
501 | 501 | return false; |
502 | 502 | } |
503 | 503 | } |
@@ -516,7 +516,7 @@ discard block |
||
516 | 516 | */ |
517 | 517 | public function deleteDirectory($directory, $preserve = false) |
518 | 518 | { |
519 | - if (! $this->isDirectory($directory)) { |
|
519 | + if (!$this->isDirectory($directory)) { |
|
520 | 520 | return false; |
521 | 521 | } |
522 | 522 | $items = new FilesystemIterator($directory); |
@@ -524,7 +524,7 @@ discard block |
||
524 | 524 | // If the item is a directory, we can just recurse into the function and |
525 | 525 | // delete that sub-directory otherwise we'll just delete the file and |
526 | 526 | // keep iterating through each file until the directory is cleaned. |
527 | - if ($item->isDir() && ! $item->isLink()) { |
|
527 | + if ($item->isDir() && !$item->isLink()) { |
|
528 | 528 | $this->deleteDirectory($item->getPathname()); |
529 | 529 | } |
530 | 530 | // If the item is just a file, we can go ahead and delete it since we're |
@@ -534,7 +534,7 @@ discard block |
||
534 | 534 | $this->delete($item->getPathname()); |
535 | 535 | } |
536 | 536 | } |
537 | - if (! $preserve) { |
|
537 | + if (!$preserve) { |
|
538 | 538 | @rmdir($directory); |
539 | 539 | } |
540 | 540 | return true; |
@@ -549,7 +549,7 @@ discard block |
||
549 | 549 | public function deleteDirectories($directory) |
550 | 550 | { |
551 | 551 | $allDirectories = $this->directories($directory); |
552 | - if (! empty($allDirectories)) { |
|
552 | + if (!empty($allDirectories)) { |
|
553 | 553 | foreach ($allDirectories as $directoryName) { |
554 | 554 | $this->deleteDirectory($directoryName); |
555 | 555 | } |
@@ -580,17 +580,17 @@ discard block |
||
580 | 580 | */ |
581 | 581 | public function getAllFilesInDirectory($dir, $recursive = true, $basedir = '', $include_dirs = false) |
582 | 582 | { |
583 | - if ($dir == '') {return array();} else {$results = array(); $subresults = array();} |
|
584 | - if (!is_dir($dir)) {$dir = dirname($dir);} // so a files path can be sent |
|
585 | - if ($basedir == '') {$basedir = realpath($dir).DIRECTORY_SEPARATOR;} |
|
583 | + if ($dir=='') {return array(); } else {$results = array(); $subresults = array(); } |
|
584 | + if (!is_dir($dir)) {$dir = dirname($dir); } // so a files path can be sent |
|
585 | + if ($basedir=='') {$basedir = realpath($dir).DIRECTORY_SEPARATOR; } |
|
586 | 586 | |
587 | 587 | $files = scandir($dir); |
588 | - foreach ($files as $key => $value){ |
|
589 | - if ( ($value != '.') && ($value != '..') ) { |
|
588 | + foreach ($files as $key => $value) { |
|
589 | + if (($value!='.') && ($value!='..')) { |
|
590 | 590 | $path = realpath($dir.DIRECTORY_SEPARATOR.$value); |
591 | 591 | if (is_dir($path)) { |
592 | 592 | // optionally include directories in file list |
593 | - if ($include_dirs) {$subresults[] = str_replace($basedir, '', $path);} |
|
593 | + if ($include_dirs) {$subresults[] = str_replace($basedir, '', $path); } |
|
594 | 594 | // optionally get file list for all subdirectories |
595 | 595 | if ($recursive) { |
596 | 596 | $subdirresults = $this->getAllFilesInDirectory($path, $recursive, $basedir, $include_dirs); |
@@ -603,7 +603,7 @@ discard block |
||
603 | 603 | } |
604 | 604 | } |
605 | 605 | // merge the subarray to give the list of files then subdirectory files |
606 | - if (count($subresults) > 0) {$results = array_merge($subresults, $results);} |
|
606 | + if (count($subresults)>0) {$results = array_merge($subresults, $results); } |
|
607 | 607 | return $results; |
608 | 608 | } |
609 | 609 |
@@ -18,11 +18,11 @@ discard block |
||
18 | 18 | */ |
19 | 19 | private static function checkFile() |
20 | 20 | { |
21 | - $filePortions = explode(DIRECTORY_SEPARATOR,self::$file); |
|
21 | + $filePortions = explode(DIRECTORY_SEPARATOR, self::$file); |
|
22 | 22 | $pop = array_pop($filePortions); |
23 | 23 | |
24 | - if(file_exists(implode(DIRECTORY_SEPARATOR,$filePortions)) |
|
25 | - && preg_match('@[a-zA-Z0-9]+\.json@',$pop)){ |
|
24 | + if (file_exists(implode(DIRECTORY_SEPARATOR, $filePortions)) |
|
25 | + && preg_match('@[a-zA-Z0-9]+\.json@', $pop)) { |
|
26 | 26 | return self::$file; |
27 | 27 | } |
28 | 28 | |
@@ -38,8 +38,8 @@ discard block |
||
38 | 38 | { |
39 | 39 | $file = self::checkFile(); |
40 | 40 | |
41 | - if(!file_exists($file)){ |
|
42 | - files()->put($file,self::encode([])); |
|
41 | + if (!file_exists($file)) { |
|
42 | + files()->put($file, self::encode([])); |
|
43 | 43 | } |
44 | 44 | } |
45 | 45 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | */ |
52 | 52 | public static function decode($data) |
53 | 53 | { |
54 | - return json_decode($data,1); |
|
54 | + return json_decode($data, 1); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | /** |
@@ -63,26 +63,26 @@ discard block |
||
63 | 63 | * |
64 | 64 | * @throws FileNotFoundException |
65 | 65 | */ |
66 | - public static function delete($key,$arrayKey=null) |
|
66 | + public static function delete($key, $arrayKey = null) |
|
67 | 67 | { |
68 | 68 | $data = self::get(); |
69 | 69 | |
70 | - if(is_null($arrayKey)){ |
|
70 | + if (is_null($arrayKey)) { |
|
71 | 71 | |
72 | - if(isset($data[$key])){ |
|
72 | + if (isset($data[$key])) { |
|
73 | 73 | unset($data[$key]); |
74 | - files()->put(self::checkFile(),self::encode($data),true); |
|
74 | + files()->put(self::checkFile(), self::encode($data), true); |
|
75 | 75 | return true; |
76 | 76 | } |
77 | 77 | } |
78 | 78 | |
79 | 79 | // if the data to be deleted |
80 | 80 | // in json data contains a nested array data. |
81 | - if(!is_null($arrayKey) && is_string($arrayKey)){ |
|
81 | + if (!is_null($arrayKey) && is_string($arrayKey)) { |
|
82 | 82 | |
83 | - if(isset($data[$key][$arrayKey])){ |
|
83 | + if (isset($data[$key][$arrayKey])) { |
|
84 | 84 | unset($data[$key][$arrayKey]); |
85 | - files()->put(self::checkFile(),self::encode($data),true); |
|
85 | + files()->put(self::checkFile(), self::encode($data), true); |
|
86 | 86 | return true; |
87 | 87 | } |
88 | 88 | } |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | */ |
99 | 99 | public static function encode($data) |
100 | 100 | { |
101 | - return json_encode($data,JSON_PRETTY_PRINT); |
|
101 | + return json_encode($data, JSON_PRETTY_PRINT); |
|
102 | 102 | } |
103 | 103 | |
104 | 104 | /** |
@@ -109,13 +109,13 @@ discard block |
||
109 | 109 | * |
110 | 110 | * @throws FileNotFoundException |
111 | 111 | */ |
112 | - public static function get($key=null) |
|
112 | + public static function get($key = null) |
|
113 | 113 | { |
114 | 114 | self::createIfNotFileExist(); |
115 | 115 | |
116 | 116 | $data = self::decode(files()->get(self::checkFile())); |
117 | 117 | |
118 | - if(is_null($key)){ |
|
118 | + if (is_null($key)) { |
|
119 | 119 | return $data; |
120 | 120 | } |
121 | 121 | |
@@ -132,27 +132,27 @@ discard block |
||
132 | 132 | * |
133 | 133 | * @throws FileNotFoundException |
134 | 134 | */ |
135 | - public static function set($key,$value) |
|
135 | + public static function set($key, $value) |
|
136 | 136 | { |
137 | 137 | self::createIfNotFileExist(); |
138 | 138 | |
139 | 139 | $file = self::get(); |
140 | 140 | |
141 | - $dotted = explode('.',$key); |
|
141 | + $dotted = explode('.', $key); |
|
142 | 142 | |
143 | - if(count($dotted)>1){ |
|
143 | + if (count($dotted)>1) { |
|
144 | 144 | $arrayInstance = new ArraySafe(self::get()); |
145 | - $nestedArray = $arrayInstance->set($key,$value)->toArray(); |
|
146 | - files()->put(self::checkFile(),self::encode($nestedArray)); |
|
145 | + $nestedArray = $arrayInstance->set($key, $value)->toArray(); |
|
146 | + files()->put(self::checkFile(), self::encode($nestedArray)); |
|
147 | 147 | } |
148 | - else{ |
|
148 | + else { |
|
149 | 149 | |
150 | - if(isset($file[$key]) && is_array($value)){ |
|
151 | - $file[$key] = array_merge($file[$key],$value); |
|
152 | - files()->put(self::checkFile(),self::encode($file)); |
|
150 | + if (isset($file[$key]) && is_array($value)) { |
|
151 | + $file[$key] = array_merge($file[$key], $value); |
|
152 | + files()->put(self::checkFile(), self::encode($file)); |
|
153 | 153 | } |
154 | - else{ |
|
155 | - files()->put(self::checkFile(),self::encode(array_merge($file,[$key=>$value]))); |
|
154 | + else { |
|
155 | + files()->put(self::checkFile(), self::encode(array_merge($file, [$key=>$value]))); |
|
156 | 156 | } |
157 | 157 | } |
158 | 158 |
@@ -144,14 +144,12 @@ |
||
144 | 144 | $arrayInstance = new ArraySafe(self::get()); |
145 | 145 | $nestedArray = $arrayInstance->set($key,$value)->toArray(); |
146 | 146 | files()->put(self::checkFile(),self::encode($nestedArray)); |
147 | - } |
|
148 | - else{ |
|
147 | + } else{ |
|
149 | 148 | |
150 | 149 | if(isset($file[$key]) && is_array($value)){ |
151 | 150 | $file[$key] = array_merge($file[$key],$value); |
152 | 151 | files()->put(self::checkFile(),self::encode($file)); |
153 | - } |
|
154 | - else{ |
|
152 | + } else{ |
|
155 | 153 | files()->put(self::checkFile(),self::encode(array_merge($file,[$key=>$value]))); |
156 | 154 | } |
157 | 155 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @var array |
34 | 34 | */ |
35 | - public $commandRule=['name','client']; |
|
35 | + public $commandRule = ['name', 'client']; |
|
36 | 36 | |
37 | 37 | /** |
38 | 38 | * @method create |
@@ -56,25 +56,25 @@ discard block |
||
56 | 56 | |
57 | 57 | $this->argument['managerTraitNamespace'] = Utils::getNamespace($this->directory['clientNameDir'].'/'.$name.'Trait.php'); |
58 | 58 | |
59 | - if(!file_exists($manager = $this->directory['clientNameDir'].'/'.$name.'Manager.php')){ |
|
59 | + if (!file_exists($manager = $this->directory['clientNameDir'].'/'.$name.'Manager.php')) { |
|
60 | 60 | $this->touch['client/manager'] = $manager; |
61 | 61 | $this->touch['client/managertrait'] = $this->directory['clientNameDir'].'/'.$name.'Trait.php'; |
62 | 62 | |
63 | 63 | } |
64 | 64 | |
65 | - if(!file_exists($this->directory['clientNameCreate'].'/Client.php')){ |
|
65 | + if (!file_exists($this->directory['clientNameCreate'].'/Client.php')) { |
|
66 | 66 | $this->touch['client/client'] = $this->directory['clientNameCreate'].'/Client.php'; |
67 | 67 | $this->touch['client/clientGenerator'] = $this->directory['clientNameCreate'].'/ClientGenerator.php'; |
68 | 68 | } |
69 | 69 | |
70 | 70 | $clientSourceNamespace = Utils::getNamespace($this->directory['clientSource'].'/'.$client.'.php'); |
71 | 71 | |
72 | - if(!file_exists($clientSourceName = $this->directory['clientSource'].'/'.$client.'.php')){ |
|
72 | + if (!file_exists($clientSourceName = $this->directory['clientSource'].'/'.$client.'.php')) { |
|
73 | 73 | $this->touch['client/source'] = $clientSourceName.''; |
74 | 74 | //$this->touch['client/sourcegenerator'] = $this->directory['clientSource'].'/'.$client.'Generator.php'; |
75 | 75 | } |
76 | 76 | |
77 | - if(!file_exists($this->directory['clientNameCreate'].'/ClientProvider.php')){ |
|
77 | + if (!file_exists($this->directory['clientNameCreate'].'/ClientProvider.php')) { |
|
78 | 78 | $this->touch['client/clientProvider'] = $this->directory['clientNameCreate'].'/ClientProvider.php'; |
79 | 79 | } |
80 | 80 | |
@@ -88,13 +88,13 @@ discard block |
||
88 | 88 | |
89 | 89 | $nameGeneratorNamespace = Utils::getNamespace($managerPath = $this->directory['clientNameDir'].''.DIRECTORY_SEPARATOR.''.$nameManager.'.php'); |
90 | 90 | |
91 | - $generator = new Generator(path()->version(),'ClientManager'); |
|
91 | + $generator = new Generator(path()->version(), 'ClientManager'); |
|
92 | 92 | |
93 | 93 | $clientManager = app()->namespace()->version().'\\ClientManager'; |
94 | 94 | |
95 | 95 | $clientManagerResolve = new $clientManager; |
96 | 96 | |
97 | - if(!method_exists($clientManagerResolve,strtolower($name))){ |
|
97 | + if (!method_exists($clientManagerResolve, strtolower($name))) { |
|
98 | 98 | |
99 | 99 | $generator->createMethod([ |
100 | 100 | strtolower($name) |
@@ -125,11 +125,11 @@ discard block |
||
125 | 125 | |
126 | 126 | } |
127 | 127 | |
128 | - $nameGenerator = new Generator($this->directory['clientNameDir'],$name.'Manager'); |
|
128 | + $nameGenerator = new Generator($this->directory['clientNameDir'], $name.'Manager'); |
|
129 | 129 | |
130 | 130 | $nameGeneratorNamespaceResolve = new $nameGeneratorNamespace; |
131 | 131 | |
132 | - if(!method_exists($nameGeneratorNamespaceResolve,strtolower($client))){ |
|
132 | + if (!method_exists($nameGeneratorNamespaceResolve, strtolower($client))) { |
|
133 | 133 | |
134 | 134 | $nameGenerator->createMethod([ |
135 | 135 | strtolower($client) |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | /** |
16 | 16 | * @var $type |
17 | 17 | */ |
18 | - public $type='model'; |
|
18 | + public $type = 'model'; |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * @var array |
@@ -32,17 +32,17 @@ discard block |
||
32 | 32 | /** |
33 | 33 | * @var $commandRule |
34 | 34 | */ |
35 | - public $commandRule=['model','?table']; |
|
35 | + public $commandRule = ['model', '?table']; |
|
36 | 36 | |
37 | 37 | /** |
38 | 38 | * @method create |
39 | 39 | * @return mixed |
40 | 40 | */ |
41 | - public function create(){ |
|
41 | + public function create() { |
|
42 | 42 | |
43 | 43 | $this->argument['file'] = $this->argument['model']; |
44 | 44 | |
45 | - if(!isset($this->argument['table'])){ |
|
45 | + if (!isset($this->argument['table'])) { |
|
46 | 46 | $this->argument['table'] = $this->argument['file'].'s'; |
47 | 47 | } |
48 | 48 | |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | |
52 | 52 | $this->directory['modelDir'] = app()->path()->model(); |
53 | 53 | $this->directory['builderDir'] = $this->directory['modelDir'].'/Builder'; |
54 | - $this->directory['builderAssistantDir'] = $this->directory['modelDir'].'/Builder/Assistant'; |
|
54 | + $this->directory['builderAssistantDir'] = $this->directory['modelDir'].'/Builder/Assistant'; |
|
55 | 55 | $this->directory['contract'] = $this->directory['modelDir'].'/Contract'; |
56 | 56 | $this->directory['helper'] = $this->directory['modelDir'].'/Helper'; |
57 | 57 | |
@@ -66,14 +66,14 @@ discard block |
||
66 | 66 | //model set |
67 | 67 | $this->touch['model/model'] = $this->directory['modelDir'].''.DIRECTORY_SEPARATOR.''.$this->argument['file'].'.php'; |
68 | 68 | $this->touch['model/builder'] = $this->directory['builderDir'].''.DIRECTORY_SEPARATOR.''.$this->argument['file'].'Builder.php'; |
69 | - $this->touch['model/builderasistant'] = $this->directory['builderAssistantDir'].''.DIRECTORY_SEPARATOR.'Builder.php'; |
|
69 | + $this->touch['model/builderasistant'] = $this->directory['builderAssistantDir'].''.DIRECTORY_SEPARATOR.'Builder.php'; |
|
70 | 70 | $this->touch['model/contract'] = $this->directory['contract'].''.DIRECTORY_SEPARATOR.''.$this->argument['file'].'Contract.php'; |
71 | 71 | |
72 | - if(!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Scope.php')){ |
|
72 | + if (!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Scope.php')) { |
|
73 | 73 | $this->touch['model/scope'] = $this->directory['helper'].''.DIRECTORY_SEPARATOR.'Scope.php'; |
74 | 74 | } |
75 | 75 | |
76 | - if(!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Event.php')){ |
|
76 | + if (!file_exists($this->directory['helper'].''.DIRECTORY_SEPARATOR.'Event.php')) { |
|
77 | 77 | $this->touch['model/event'] = $this->directory['helper'].''.DIRECTORY_SEPARATOR.'Event.php'; |
78 | 78 | } |
79 | 79 | |
@@ -81,7 +81,7 @@ discard block |
||
81 | 81 | |
82 | 82 | $entityDir = $this->directory['modelDir'].''.DIRECTORY_SEPARATOR.'Entity'; |
83 | 83 | |
84 | - if(!file_exists($entityDir)){ |
|
84 | + if (!file_exists($entityDir)) { |
|
85 | 85 | files()->makeDirectory($entityDir); |
86 | 86 | } |
87 | 87 | |
@@ -90,9 +90,9 @@ discard block |
||
90 | 90 | $entityClass = $entityDir.''.DIRECTORY_SEPARATOR.''.$entityTableName.''.DIRECTORY_SEPARATOR.''.$entityTableName; |
91 | 91 | |
92 | 92 | |
93 | - $generator = new Generator($entityDir,'EntityMap'); |
|
93 | + $generator = new Generator($entityDir, 'EntityMap'); |
|
94 | 94 | |
95 | - if(!file_exists($entityDir.''.DIRECTORY_SEPARATOR.'EntityMap.php')){ |
|
95 | + if (!file_exists($entityDir.''.DIRECTORY_SEPARATOR.'EntityMap.php')) { |
|
96 | 96 | |
97 | 97 | //$this->setAnnotations(); |
98 | 98 | $generator->createClass(); |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | |
103 | 103 | $entityMapNamespaceResolve = new $entityMapNamespace; |
104 | 104 | |
105 | - if(!method_exists($entityMapNamespaceResolve,strtolower($this->argument['table']))){ |
|
105 | + if (!method_exists($entityMapNamespaceResolve, strtolower($this->argument['table']))) { |
|
106 | 106 | |
107 | 107 | $generator->createClassUse([ |
108 | 108 | Utils::getNamespace($entityClass) |
@@ -132,15 +132,15 @@ discard block |
||
132 | 132 | |
133 | 133 | |
134 | 134 | //set builder map |
135 | - $generator = new Generator($this->directory['builderDir'],'BuilderMap'); |
|
135 | + $generator = new Generator($this->directory['builderDir'], 'BuilderMap'); |
|
136 | 136 | |
137 | - if(!file_exists($this->directory['builderDir'].''.DIRECTORY_SEPARATOR.'BuilderMap.php')){ |
|
137 | + if (!file_exists($this->directory['builderDir'].''.DIRECTORY_SEPARATOR.'BuilderMap.php')) { |
|
138 | 138 | |
139 | 139 | $this->setAnnotations(); |
140 | 140 | $generator->createClass(); |
141 | 141 | } |
142 | 142 | |
143 | - if(!file_exists($this->touch['model/model'])){ |
|
143 | + if (!file_exists($this->touch['model/model'])) { |
|
144 | 144 | |
145 | 145 | $generator->createMethod([ |
146 | 146 | strtolower($this->argument['file']) |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | } |
162 | 162 | |
163 | 163 | //set project touch |
164 | - $this->file->touch($this,[ |
|
164 | + $this->file->touch($this, [ |
|
165 | 165 | 'stub'=>'Model_Create' |
166 | 166 | ]); |
167 | 167 | |
@@ -172,11 +172,11 @@ discard block |
||
172 | 172 | /** |
173 | 173 | * @return bool |
174 | 174 | */ |
175 | - private function setAnnotations(){ |
|
175 | + private function setAnnotations() { |
|
176 | 176 | |
177 | 177 | $entityMap = app()->path()->model().''.DIRECTORY_SEPARATOR.'Entity'.DIRECTORY_SEPARATOR.'EntityMap.php'; |
178 | 178 | |
179 | - if(file_exists($entityMap)){ |
|
179 | + if (file_exists($entityMap)) { |
|
180 | 180 | |
181 | 181 | Utils::changeClass(path()->serviceAnnotations().'.php', |
182 | 182 | [ |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | /** |
26 | 26 | * @var array |
27 | 27 | */ |
28 | - protected $stubList=array(); |
|
28 | + protected $stubList = array(); |
|
29 | 29 | |
30 | 30 | /** |
31 | 31 | * FileProcess constructor. |
@@ -41,10 +41,10 @@ discard block |
||
41 | 41 | * @param $data |
42 | 42 | * @return bool |
43 | 43 | */ |
44 | - public function dumpFile($file,$data) |
|
44 | + public function dumpFile($file, $data) |
|
45 | 45 | { |
46 | 46 | try { |
47 | - $this->fs->dumpFile($file,$data); |
|
47 | + $this->fs->dumpFile($file, $data); |
|
48 | 48 | return true; |
49 | 49 | } catch (IOExceptionInterface $exception) { |
50 | 50 | return false; |
@@ -56,21 +56,21 @@ discard block |
||
56 | 56 | * @param bool $status |
57 | 57 | * @return mixed |
58 | 58 | */ |
59 | - public function makeDirectory($data,$status=false) |
|
59 | + public function makeDirectory($data, $status = false) |
|
60 | 60 | { |
61 | - if($data->type=="project" && file_exists($data->project)){ |
|
61 | + if ($data->type=="project" && file_exists($data->project)) { |
|
62 | 62 | throw new \LogicException('This Project Is Already Available'); |
63 | 63 | } |
64 | - if(false===$status){ |
|
64 | + if (false===$status) { |
|
65 | 65 | |
66 | - if($data->type!=="project" && !file_exists($data->project)){ |
|
66 | + if ($data->type!=="project" && !file_exists($data->project)) { |
|
67 | 67 | throw new \LogicException('Project No'); |
68 | 68 | } |
69 | 69 | } |
70 | - foreach ($data->directory as $directory){ |
|
70 | + foreach ($data->directory as $directory) { |
|
71 | 71 | try { |
72 | - $this->fs->mkdir($directory,'0777'); |
|
73 | - chmod($directory,0777); |
|
72 | + $this->fs->mkdir($directory, '0777'); |
|
73 | + chmod($directory, 0777); |
|
74 | 74 | } catch (IOExceptionInterface $e) { |
75 | 75 | return "An error occurred while creating your directory at ".$e->getPath(); |
76 | 76 | } |
@@ -102,25 +102,25 @@ discard block |
||
102 | 102 | * @param $data |
103 | 103 | * @param array $complex |
104 | 104 | */ |
105 | - public function touch($data,$complex=array()) |
|
105 | + public function touch($data, $complex = array()) |
|
106 | 106 | { |
107 | - $this->data=$data; |
|
107 | + $this->data = $data; |
|
108 | 108 | |
109 | - if(isset($complex['stub']) && isset($this->data->argument['stub'])){ |
|
109 | + if (isset($complex['stub']) && isset($this->data->argument['stub'])) { |
|
110 | 110 | |
111 | 111 | $this->stubManager($complex); |
112 | 112 | } |
113 | 113 | |
114 | - $execArray=(count($this->stubList)) ? $this->stubList : $this->data->touch; |
|
114 | + $execArray = (count($this->stubList)) ? $this->stubList : $this->data->touch; |
|
115 | 115 | |
116 | - foreach ($execArray as $execution=>$touch){ |
|
116 | + foreach ($execArray as $execution=>$touch) { |
|
117 | 117 | |
118 | - if(!file_exists($touch) && $touch!==null){ |
|
118 | + if (!file_exists($touch) && $touch!==null) { |
|
119 | 119 | touch($touch); |
120 | 120 | |
121 | - $executionPath=$this->stubPath.'/'.$execution.'.stub'; |
|
122 | - if(file_exists($executionPath)){ |
|
123 | - $this->fopenprocess($executionPath,$touch,$data); |
|
121 | + $executionPath = $this->stubPath.'/'.$execution.'.stub'; |
|
122 | + if (file_exists($executionPath)) { |
|
123 | + $this->fopenprocess($executionPath, $touch, $data); |
|
124 | 124 | } |
125 | 125 | } |
126 | 126 | } |
@@ -129,37 +129,37 @@ discard block |
||
129 | 129 | /** |
130 | 130 | * @param array $complex |
131 | 131 | */ |
132 | - private function stubManager($complex=array()) |
|
132 | + private function stubManager($complex = array()) |
|
133 | 133 | { |
134 | - $stubStructure = explode("_",$complex['stub']); |
|
134 | + $stubStructure = explode("_", $complex['stub']); |
|
135 | 135 | $stubStructure[] = $this->data->argument['stub']; |
136 | 136 | |
137 | - $stubberDirectoryList=path()->stubs(); |
|
137 | + $stubberDirectoryList = path()->stubs(); |
|
138 | 138 | |
139 | - foreach ($stubStructure as $stubberDirectory){ |
|
139 | + foreach ($stubStructure as $stubberDirectory) { |
|
140 | 140 | |
141 | 141 | $stubberDirectoryList = $stubberDirectoryList.'/'.$stubberDirectory; |
142 | 142 | |
143 | 143 | $this->setDirectory($stubberDirectoryList); |
144 | 144 | } |
145 | 145 | |
146 | - foreach ($this->data->touch as $execution=>$executionFile){ |
|
146 | + foreach ($this->data->touch as $execution=>$executionFile) { |
|
147 | 147 | |
148 | - $executionArray=explode("/",$execution); |
|
148 | + $executionArray = explode("/", $execution); |
|
149 | 149 | |
150 | 150 | $executionStub = end($executionArray).''; |
151 | 151 | $this->stubList[$executionStub] = $executionFile; |
152 | 152 | $stubberFile = $stubberDirectoryList.'/'.$executionStub.'.stub'; |
153 | 153 | |
154 | - $originalPath=$this->stubPath.'/'.$execution.'.stub'; |
|
154 | + $originalPath = $this->stubPath.'/'.$execution.'.stub'; |
|
155 | 155 | |
156 | - if(!file_exists($stubberFile)){ |
|
156 | + if (!file_exists($stubberFile)) { |
|
157 | 157 | |
158 | - $this->fs->copy($originalPath,$stubberFile); |
|
158 | + $this->fs->copy($originalPath, $stubberFile); |
|
159 | 159 | } |
160 | 160 | } |
161 | 161 | |
162 | - $this->stubPath=$stubberDirectoryList; |
|
162 | + $this->stubPath = $stubberDirectoryList; |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | |
@@ -169,16 +169,16 @@ discard block |
||
169 | 169 | * @param $param |
170 | 170 | * @return bool |
171 | 171 | */ |
172 | - public function fopenprocess($executionPath,$path,$param) |
|
172 | + public function fopenprocess($executionPath, $path, $param) |
|
173 | 173 | { |
174 | 174 | $dt = fopen($executionPath, "r"); |
175 | 175 | $content = fread($dt, filesize($executionPath)); |
176 | 176 | fclose($dt); |
177 | 177 | |
178 | - foreach ($param->argument as $key=>$value){ |
|
178 | + foreach ($param->argument as $key=>$value) { |
|
179 | 179 | |
180 | - $content=str_replace("__".$key."__",$value,$content); |
|
181 | - $content=str_replace("__".$key."-low__",strtolower($value),$content); |
|
180 | + $content = str_replace("__".$key."__", $value, $content); |
|
181 | + $content = str_replace("__".$key."-low__", strtolower($value), $content); |
|
182 | 182 | } |
183 | 183 | |
184 | 184 | $dt = fopen($path, "w"); |
@@ -194,14 +194,14 @@ discard block |
||
194 | 194 | * @param $param |
195 | 195 | * @return bool |
196 | 196 | */ |
197 | - public function stubCopy($executionPath,$path,$param) |
|
197 | + public function stubCopy($executionPath, $path, $param) |
|
198 | 198 | { |
199 | 199 | $dt = fopen($executionPath, "r"); |
200 | 200 | $content = fread($dt, filesize($executionPath)); |
201 | 201 | fclose($dt); |
202 | 202 | |
203 | - foreach ($param->argument as $key=>$value){ |
|
204 | - $content=str_replace("__".$key."__",$value,$content); |
|
203 | + foreach ($param->argument as $key=>$value) { |
|
204 | + $content = str_replace("__".$key."__", $value, $content); |
|
205 | 205 | } |
206 | 206 | |
207 | 207 | $dt = fopen($path, "w"); |
@@ -215,9 +215,9 @@ discard block |
||
215 | 215 | * @param null $file |
216 | 216 | * @return mixed|null |
217 | 217 | */ |
218 | - public function callFile($file=null) |
|
218 | + public function callFile($file = null) |
|
219 | 219 | { |
220 | - if(file_exists($file)){ |
|
220 | + if (file_exists($file)) { |
|
221 | 221 | return require_once($file); |
222 | 222 | } |
223 | 223 | return null; |
@@ -229,9 +229,9 @@ discard block |
||
229 | 229 | * @param null|string $file |
230 | 230 | * @param null|string $data |
231 | 231 | */ |
232 | - public function writeFile($file=null,$data=null) |
|
232 | + public function writeFile($file = null, $data = null) |
|
233 | 233 | { |
234 | - if(!is_null($file) && !is_null($data)){ |
|
234 | + if (!is_null($file) && !is_null($data)) { |
|
235 | 235 | |
236 | 236 | $dt = fopen($file, "r"); |
237 | 237 | $content = fread($dt, filesize($file)); |
@@ -46,11 +46,11 @@ discard block |
||
46 | 46 | /** |
47 | 47 | * @return void |
48 | 48 | */ |
49 | - public function create(){ |
|
49 | + public function create() { |
|
50 | 50 | |
51 | 51 | $schedulePath = app()->path()->schedule(); |
52 | 52 | |
53 | - if(!file_exists($schedulePath)){ |
|
53 | + if (!file_exists($schedulePath)) { |
|
54 | 54 | $this->directory['schedule'] = $schedulePath; |
55 | 55 | $this->file->makeDirectory($this); |
56 | 56 | } |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | $this->argument['scheduleClass'] = ucfirst($this->argument['schedule']).''; |
60 | 60 | $this->argument['projectName'] = strtolower($this->projectName()); |
61 | 61 | |
62 | - $this->touch['schedule/schedule']= $schedulePath.'/'.$this->argument['schedule'].'.php'; |
|
62 | + $this->touch['schedule/schedule'] = $schedulePath.'/'.$this->argument['schedule'].'.php'; |
|
63 | 63 | |
64 | 64 | |
65 | 65 | $this->file->touch($this); |
@@ -76,39 +76,39 @@ discard block |
||
76 | 76 | { |
77 | 77 | $this->scheduleJsonFile(); |
78 | 78 | $this->clear(); |
79 | - foreach (JsonHandler::get() as $schedule=>$items){ |
|
80 | - if($schedule!==$this->argument['schedule']){ |
|
81 | - app()->command('schedule register','schedule:'.$schedule); |
|
79 | + foreach (JsonHandler::get() as $schedule=>$items) { |
|
80 | + if ($schedule!==$this->argument['schedule']) { |
|
81 | + app()->command('schedule register', 'schedule:'.$schedule); |
|
82 | 82 | } |
83 | 83 | } |
84 | 84 | } |
85 | 85 | |
86 | 86 | public function list() |
87 | 87 | { |
88 | - exec('crontab -l',$list); |
|
88 | + exec('crontab -l', $list); |
|
89 | 89 | |
90 | - $this->table->setHeaders(['no','minute','hour','day','month','week','schedule','description']); |
|
90 | + $this->table->setHeaders(['no', 'minute', 'hour', 'day', 'month', 'week', 'schedule', 'description']); |
|
91 | 91 | |
92 | 92 | |
93 | - foreach ($list as $key=>$item){ |
|
93 | + foreach ($list as $key=>$item) { |
|
94 | 94 | |
95 | - if(preg_match('@.*php api schedule run '.strtolower($this->projectName()).'.*@is',$item,$result)){ |
|
96 | - if(isset($result[0])){ |
|
95 | + if (preg_match('@.*php api schedule run '.strtolower($this->projectName()).'.*@is', $item, $result)) { |
|
96 | + if (isset($result[0])) { |
|
97 | 97 | |
98 | 98 | $cron = []; |
99 | 99 | |
100 | - if(preg_match('@(.*)\scd@',$result[0],$cron)){ |
|
101 | - $cron = (isset($cron[1])) ? explode(' ',$cron[1]) : ''; |
|
100 | + if (preg_match('@(.*)\scd@', $result[0], $cron)) { |
|
101 | + $cron = (isset($cron[1])) ? explode(' ', $cron[1]) : ''; |
|
102 | 102 | |
103 | 103 | } |
104 | 104 | |
105 | 105 | $scheduleName = ''; |
106 | 106 | |
107 | - if(preg_match('@schedule\:(.*?)\s@',$result[0],$scheduler)){ |
|
107 | + if (preg_match('@schedule\:(.*?)\s@', $result[0], $scheduler)) { |
|
108 | 108 | $scheduleName = (isset($scheduler[1])) ? $scheduler[1] : ''; |
109 | 109 | |
110 | 110 | $schedulerInstance = $this->scheduleInstance(ucfirst($scheduleName)); |
111 | - $description = ClosureDispatcher::bind($schedulerInstance)->call(function(){ |
|
111 | + $description = ClosureDispatcher::bind($schedulerInstance)->call(function() { |
|
112 | 112 | return $this->description; |
113 | 113 | }); |
114 | 114 | |
@@ -139,7 +139,7 @@ discard block |
||
139 | 139 | $schedules = Utils::glob(app()->path()->schedule()); |
140 | 140 | |
141 | 141 | |
142 | - if(isset($schedules[$this->argument['schedule']])){ |
|
142 | + if (isset($schedules[$this->argument['schedule']])) { |
|
143 | 143 | |
144 | 144 | $scheduleNamespace = Utils::getNamespace($schedules[$this->argument['schedule']]); |
145 | 145 | $scheduleInstance = app()->resolve($scheduleNamespace); |
@@ -147,20 +147,20 @@ discard block |
||
147 | 147 | $scheduleManager = new ScheduleManager(); |
148 | 148 | $scheduleInstance->when($scheduleManager); |
149 | 149 | |
150 | - $cronScheduler = implode(' ',$scheduleManager->getCronScheduler()); |
|
150 | + $cronScheduler = implode(' ', $scheduleManager->getCronScheduler()); |
|
151 | 151 | |
152 | 152 | $command = $cronScheduler.' cd '.root.' && php api schedule run munch schedule:'.lcfirst($this->argument['schedule']).' >> /dev/null 2>&1'; |
153 | 153 | |
154 | - if($this->cronjob_exists($command)===false){ |
|
154 | + if ($this->cronjob_exists($command)===false) { |
|
155 | 155 | |
156 | 156 | $output = shell_exec('crontab -l'); |
157 | 157 | file_put_contents('/tmp/crontab.txt', $output.''.$command.''.PHP_EOL); |
158 | 158 | exec('crontab /tmp/crontab.txt'); |
159 | 159 | |
160 | 160 | $this->scheduleJsonFile(); |
161 | - JsonHandler::set($this->argument['schedule'].'.namespace',$scheduleNamespace); |
|
162 | - JsonHandler::set($this->argument['schedule'].'.date',date('Y-m-d H:i:s')); |
|
163 | - JsonHandler::set($this->argument['schedule'].'.command',$cronScheduler); |
|
161 | + JsonHandler::set($this->argument['schedule'].'.namespace', $scheduleNamespace); |
|
162 | + JsonHandler::set($this->argument['schedule'].'.date', date('Y-m-d H:i:s')); |
|
163 | + JsonHandler::set($this->argument['schedule'].'.command', $cronScheduler); |
|
164 | 164 | |
165 | 165 | echo $this->info('Cron has been added'); |
166 | 166 | } |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | { |
175 | 175 | $schedules = Utils::glob(app()->path()->schedule()); |
176 | 176 | |
177 | - if(isset($schedules[$this->argument['schedule']])){ |
|
177 | + if (isset($schedules[$this->argument['schedule']])) { |
|
178 | 178 | $scheduleNamespace = Utils::getNamespace($schedules[$this->argument['schedule']]); |
179 | 179 | $scheduleInstance = app()->resolve($scheduleNamespace); |
180 | 180 | |
@@ -186,25 +186,25 @@ discard block |
||
186 | 186 | { |
187 | 187 | $this->clear(); |
188 | 188 | $this->scheduleJsonFile(); |
189 | - foreach (JsonHandler::get() as $schedule=>$items){ |
|
190 | - app()->command('schedule register','schedule:'.lcfirst($schedule)); |
|
189 | + foreach (JsonHandler::get() as $schedule=>$items) { |
|
190 | + app()->command('schedule register', 'schedule:'.lcfirst($schedule)); |
|
191 | 191 | } |
192 | 192 | } |
193 | 193 | |
194 | - private function cronjob_exists($command){ |
|
194 | + private function cronjob_exists($command) { |
|
195 | 195 | |
196 | - $cronjob_exists=false; |
|
196 | + $cronjob_exists = false; |
|
197 | 197 | |
198 | 198 | exec('crontab -l', $crontab); |
199 | 199 | |
200 | 200 | |
201 | - if(isset($crontab)&&is_array($crontab)){ |
|
201 | + if (isset($crontab) && is_array($crontab)) { |
|
202 | 202 | |
203 | 203 | $crontab = array_flip($crontab); |
204 | 204 | |
205 | - if(isset($crontab[$command])){ |
|
205 | + if (isset($crontab[$command])) { |
|
206 | 206 | |
207 | - $cronjob_exists=true; |
|
207 | + $cronjob_exists = true; |
|
208 | 208 | |
209 | 209 | } |
210 | 210 | |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | { |
221 | 221 | $schedules = Utils::glob(app()->path()->schedule()); |
222 | 222 | |
223 | - if(isset($schedules[$schedule])){ |
|
223 | + if (isset($schedules[$schedule])) { |
|
224 | 224 | $scheduleNamespace = Utils::getNamespace($schedules[$schedule]); |
225 | 225 | return $scheduleInstance = app()->resolve($scheduleNamespace); |
226 | 226 | } |
@@ -7,7 +7,7 @@ discard block |
||
7 | 7 | /** |
8 | 8 | * @var array |
9 | 9 | */ |
10 | - protected static $cronScheduler = ['*','*','*','*','*']; |
|
10 | + protected static $cronScheduler = ['*', '*', '*', '*', '*']; |
|
11 | 11 | |
12 | 12 | /** |
13 | 13 | * schedule daily |
@@ -16,7 +16,7 @@ discard block |
||
16 | 16 | * @param int $minute |
17 | 17 | * @return void |
18 | 18 | */ |
19 | - public function daily($hour=0,$minute=0) |
|
19 | + public function daily($hour = 0, $minute = 0) |
|
20 | 20 | { |
21 | 21 | self::$cronScheduler[1] = $hour; |
22 | 22 |
@@ -9,48 +9,48 @@ |
||
9 | 9 | * @param int $minute |
10 | 10 | * @return void |
11 | 11 | */ |
12 | - public function daily($hour=0,$minute=0); |
|
12 | + public function daily($hour = 0, $minute = 0); |
|
13 | 13 | |
14 | 14 | /** |
15 | 15 | * @param integer $day |
16 | 16 | * @return $this |
17 | 17 | */ |
18 | - public function day($day=1); |
|
18 | + public function day($day = 1); |
|
19 | 19 | |
20 | 20 | /** |
21 | 21 | * @param integer $hour |
22 | 22 | * @return $this |
23 | 23 | */ |
24 | - public function everyHour($hour=1); |
|
24 | + public function everyHour($hour = 1); |
|
25 | 25 | |
26 | 26 | /** |
27 | 27 | * @param int $minute |
28 | 28 | * @return $this |
29 | 29 | */ |
30 | - public function everyMinute($minute=1); |
|
30 | + public function everyMinute($minute = 1); |
|
31 | 31 | |
32 | 32 | /** |
33 | 33 | * @param mixed $hour |
34 | 34 | * @return $this |
35 | 35 | */ |
36 | - public function hour($hour='*'); |
|
36 | + public function hour($hour = '*'); |
|
37 | 37 | |
38 | 38 | /** |
39 | 39 | * @param int $minute |
40 | 40 | * @return $this |
41 | 41 | */ |
42 | - public function minute($minute=1); |
|
42 | + public function minute($minute = 1); |
|
43 | 43 | |
44 | 44 | /** |
45 | 45 | * @param mixed $month |
46 | 46 | * @return $this |
47 | 47 | */ |
48 | - public function month($month=1); |
|
48 | + public function month($month = 1); |
|
49 | 49 | |
50 | 50 | /** |
51 | 51 | * @param mixed $week$month |
52 | 52 | * @return $this |
53 | 53 | */ |
54 | - public function week($week=1); |
|
54 | + public function week($week = 1); |
|
55 | 55 | |
56 | 56 | } |
57 | 57 | \ No newline at end of file |