@@ -7,32 +7,32 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * @return mixed |
| 9 | 9 | */ |
| 10 | - public function handle() |
|
| 11 | - {
|
|
| 12 | - return $this->getConfigAliasGroup(); |
|
| 13 | - } |
|
| 10 | + public function handle() |
|
| 11 | + {
|
|
| 12 | + return $this->getConfigAliasGroup(); |
|
| 13 | + } |
|
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | 16 | * @return array |
| 17 | 17 | */ |
| 18 | - public function getConfigAliasGroup() |
|
| 19 | - {
|
|
| 20 | - $aliasGroup=app()->namespace()->config().'\AliasGroup'; |
|
| 21 | - if(class_exists($aliasGroup)){
|
|
| 22 | - return app()->resolve($aliasGroup)->handle(); |
|
| 23 | - } |
|
| 24 | - return []; |
|
| 25 | - } |
|
| 18 | + public function getConfigAliasGroup() |
|
| 19 | + {
|
|
| 20 | + $aliasGroup=app()->namespace()->config().'\AliasGroup'; |
|
| 21 | + if(class_exists($aliasGroup)){
|
|
| 22 | + return app()->resolve($aliasGroup)->handle(); |
|
| 23 | + } |
|
| 24 | + return []; |
|
| 25 | + } |
|
| 26 | 26 | |
| 27 | 27 | /** |
| 28 | 28 | * @param $object |
| 29 | 29 | * @param $name |
| 30 | 30 | * @return void |
| 31 | 31 | */ |
| 32 | - public static function setAlias($object,$name) |
|
| 33 | - {
|
|
| 34 | - if((new $object) instanceof $name === false){
|
|
| 35 | - class_alias($object,$name); |
|
| 36 | - } |
|
| 37 | - } |
|
| 32 | + public static function setAlias($object,$name) |
|
| 33 | + {
|
|
| 34 | + if((new $object) instanceof $name === false){
|
|
| 35 | + class_alias($object,$name); |
|
| 36 | + } |
|
| 37 | + } |
|
| 38 | 38 | } |
| 39 | 39 | \ No newline at end of file |
@@ -17,8 +17,8 @@ discard block |
||
| 17 | 17 | */ |
| 18 | 18 | public function getConfigAliasGroup() |
| 19 | 19 | {
|
| 20 | - $aliasGroup=app()->namespace()->config().'\AliasGroup'; |
|
| 21 | - if(class_exists($aliasGroup)){
|
|
| 20 | + $aliasGroup = app()->namespace()->config().'\AliasGroup'; |
|
| 21 | + if (class_exists($aliasGroup)) {
|
|
| 22 | 22 | return app()->resolve($aliasGroup)->handle(); |
| 23 | 23 | } |
| 24 | 24 | return []; |
@@ -29,10 +29,10 @@ discard block |
||
| 29 | 29 | * @param $name |
| 30 | 30 | * @return void |
| 31 | 31 | */ |
| 32 | - public static function setAlias($object,$name) |
|
| 32 | + public static function setAlias($object, $name) |
|
| 33 | 33 | {
|
| 34 | - if((new $object) instanceof $name === false){
|
|
| 35 | - class_alias($object,$name); |
|
| 34 | + if ((new $object) instanceof $name===false) {
|
|
| 35 | + class_alias($object, $name); |
|
| 36 | 36 | } |
| 37 | 37 | } |
| 38 | 38 | } |
| 39 | 39 | \ No newline at end of file |
@@ -31,7 +31,7 @@ |
||
| 31 | 31 | public function exclude() |
| 32 | 32 | {
|
| 33 | 33 | return [ |
| 34 | - 'all'=>['hook','login','logout'] |
|
| 34 | + 'all'=>['hook', 'login', 'logout'] |
|
| 35 | 35 | ]; |
| 36 | 36 | } |
| 37 | 37 | } |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | foreach ($array as $values) {
|
| 46 | 46 | if ($values instanceof Collection) {
|
| 47 | 47 | $values = $values->all(); |
| 48 | - } elseif (! is_array($values)) {
|
|
| 48 | + } elseif (!is_array($values)) {
|
|
| 49 | 49 | continue; |
| 50 | 50 | } |
| 51 | 51 | $results = array_merge($results, $values); |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | {
|
| 95 | 95 | $results = []; |
| 96 | 96 | foreach ($array as $key => $value) {
|
| 97 | - if (is_array($value) && ! empty($value)) {
|
|
| 97 | + if (is_array($value) && !empty($value)) {
|
|
| 98 | 98 | $results = array_merge($results, static::dot($value, $prepend.$key.'.')); |
| 99 | 99 | } else {
|
| 100 | 100 | $results[$prepend.$key] = $value; |
@@ -180,12 +180,12 @@ discard block |
||
| 180 | 180 | $result = []; |
| 181 | 181 | foreach ($array as $item) {
|
| 182 | 182 | $item = $item instanceof Collection ? $item->all() : $item; |
| 183 | - if (! is_array($item)) {
|
|
| 183 | + if (!is_array($item)) {
|
|
| 184 | 184 | $result[] = $item; |
| 185 | - } elseif ($depth === 1) {
|
|
| 185 | + } elseif ($depth===1) {
|
|
| 186 | 186 | $result = array_merge($result, array_values($item)); |
| 187 | 187 | } else {
|
| 188 | - $result = array_merge($result, static::flatten($item, $depth - 1)); |
|
| 188 | + $result = array_merge($result, static::flatten($item, $depth-1)); |
|
| 189 | 189 | } |
| 190 | 190 | } |
| 191 | 191 | return $result; |
@@ -200,8 +200,8 @@ discard block |
||
| 200 | 200 | public static function forget(&$array, $keys) |
| 201 | 201 | {
|
| 202 | 202 | $original = &$array; |
| 203 | - $keys = (array) $keys; |
|
| 204 | - if (count($keys) === 0) {
|
|
| 203 | + $keys = (array)$keys; |
|
| 204 | + if (count($keys)===0) {
|
|
| 205 | 205 | return; |
| 206 | 206 | } |
| 207 | 207 | foreach ($keys as $key) {
|
@@ -213,7 +213,7 @@ discard block |
||
| 213 | 213 | $parts = explode('.', $key);
|
| 214 | 214 | // clean up before each pass |
| 215 | 215 | $array = &$original; |
| 216 | - while (count($parts) > 1) {
|
|
| 216 | + while (count($parts)>1) {
|
|
| 217 | 217 | $part = array_shift($parts); |
| 218 | 218 | if (isset($array[$part]) && is_array($array[$part])) {
|
| 219 | 219 | $array = &$array[$part]; |
@@ -234,7 +234,7 @@ discard block |
||
| 234 | 234 | */ |
| 235 | 235 | public static function get($array, $key, $default = null) |
| 236 | 236 | {
|
| 237 | - if (! static::accessible($array)) {
|
|
| 237 | + if (!static::accessible($array)) {
|
|
| 238 | 238 | return value($default); |
| 239 | 239 | } |
| 240 | 240 | if (is_null($key)) {
|
@@ -243,7 +243,7 @@ discard block |
||
| 243 | 243 | if (static::exists($array, $key)) {
|
| 244 | 244 | return $array[$key]; |
| 245 | 245 | } |
| 246 | - if (strpos($key, '.') === false) {
|
|
| 246 | + if (strpos($key, '.')===false) {
|
|
| 247 | 247 | return $array[$key] ?? value($default); |
| 248 | 248 | } |
| 249 | 249 | foreach (explode('.', $key) as $segment) {
|
@@ -267,11 +267,11 @@ discard block |
||
| 267 | 267 | if (is_null($keys)) {
|
| 268 | 268 | return false; |
| 269 | 269 | } |
| 270 | - $keys = (array) $keys; |
|
| 271 | - if (! $array) {
|
|
| 270 | + $keys = (array)$keys; |
|
| 271 | + if (!$array) {
|
|
| 272 | 272 | return false; |
| 273 | 273 | } |
| 274 | - if ($keys === []) {
|
|
| 274 | + if ($keys===[]) {
|
|
| 275 | 275 | return false; |
| 276 | 276 | } |
| 277 | 277 | foreach ($keys as $key) {
|
@@ -300,7 +300,7 @@ discard block |
||
| 300 | 300 | public static function isAssoc(array $array) |
| 301 | 301 | {
|
| 302 | 302 | $keys = array_keys($array); |
| 303 | - return array_keys($keys) !== $keys; |
|
| 303 | + return array_keys($keys)!==$keys; |
|
| 304 | 304 | } |
| 305 | 305 | /** |
| 306 | 306 | * Get a subset of the items from the given array. |
@@ -311,7 +311,7 @@ discard block |
||
| 311 | 311 | */ |
| 312 | 312 | public static function only($array, $keys) |
| 313 | 313 | {
|
| 314 | - return array_intersect_key($array, array_flip((array) $keys)); |
|
| 314 | + return array_intersect_key($array, array_flip((array)$keys)); |
|
| 315 | 315 | } |
| 316 | 316 | /** |
| 317 | 317 | * Pluck an array of values from an array. |
@@ -335,7 +335,7 @@ discard block |
||
| 335 | 335 | } else {
|
| 336 | 336 | $itemKey = data_get($item, $key); |
| 337 | 337 | if (is_object($itemKey) && method_exists($itemKey, '__toString')) {
|
| 338 | - $itemKey = (string) $itemKey; |
|
| 338 | + $itemKey = (string)$itemKey; |
|
| 339 | 339 | } |
| 340 | 340 | $results[$itemKey] = $itemValue; |
| 341 | 341 | } |
@@ -368,7 +368,7 @@ discard block |
||
| 368 | 368 | if (is_null($key)) {
|
| 369 | 369 | array_unshift($array, $value); |
| 370 | 370 | } else {
|
| 371 | - $array = [$key => $value] + $array; |
|
| 371 | + $array = [$key => $value]+$array; |
|
| 372 | 372 | } |
| 373 | 373 | return $array; |
| 374 | 374 | } |
@@ -399,7 +399,7 @@ discard block |
||
| 399 | 399 | {
|
| 400 | 400 | $requested = is_null($number) ? 1 : $number; |
| 401 | 401 | $count = count($array); |
| 402 | - if ($requested > $count) {
|
|
| 402 | + if ($requested>$count) {
|
|
| 403 | 403 | throw new InvalidArgumentException( |
| 404 | 404 | "You requested {$requested} items, but there are only {$count} items available."
|
| 405 | 405 | ); |
@@ -407,12 +407,12 @@ discard block |
||
| 407 | 407 | if (is_null($number)) {
|
| 408 | 408 | return $array[array_rand($array)]; |
| 409 | 409 | } |
| 410 | - if ((int) $number === 0) {
|
|
| 410 | + if ((int)$number===0) {
|
|
| 411 | 411 | return []; |
| 412 | 412 | } |
| 413 | 413 | $keys = array_rand($array, $number); |
| 414 | 414 | $results = []; |
| 415 | - foreach ((array) $keys as $key) {
|
|
| 415 | + foreach ((array)$keys as $key) {
|
|
| 416 | 416 | $results[] = $array[$key]; |
| 417 | 417 | } |
| 418 | 418 | return $results; |
@@ -433,12 +433,12 @@ discard block |
||
| 433 | 433 | return $array = $value; |
| 434 | 434 | } |
| 435 | 435 | $keys = explode('.', $key);
|
| 436 | - while (count($keys) > 1) {
|
|
| 436 | + while (count($keys)>1) {
|
|
| 437 | 437 | $key = array_shift($keys); |
| 438 | 438 | // If the key doesn't exist at this depth, we will just create an empty array |
| 439 | 439 | // to hold the next value, allowing us to create the arrays to hold final |
| 440 | 440 | // values at the correct depth. Then we'll keep digging into the array. |
| 441 | - if (! isset($array[$key]) || ! is_array($array[$key])) {
|
|
| 441 | + if (!isset($array[$key]) || !is_array($array[$key])) {
|
|
| 442 | 442 | $array[$key] = []; |
| 443 | 443 | } |
| 444 | 444 | $array = &$array[$key]; |
@@ -459,7 +459,7 @@ discard block |
||
| 459 | 459 | shuffle($array); |
| 460 | 460 | } else {
|
| 461 | 461 | srand($seed); |
| 462 | - usort($array, function () {
|
|
| 462 | + usort($array, function() {
|
|
| 463 | 463 | return rand(-1, 1); |
| 464 | 464 | }); |
| 465 | 465 | } |
@@ -536,16 +536,16 @@ discard block |
||
| 536 | 536 | * @param array $referenceArray |
| 537 | 537 | * @return array |
| 538 | 538 | */ |
| 539 | - public static function removeSameValues($removeArray=array(),$referenceArray=array()) |
|
| 539 | + public static function removeSameValues($removeArray = array(), $referenceArray = array()) |
|
| 540 | 540 | {
|
| 541 | 541 | $list = []; |
| 542 | 542 | |
| 543 | - foreach ($removeArray as $remove){
|
|
| 544 | - if(!in_array($remove,$referenceArray)){
|
|
| 545 | - $list[]=$remove; |
|
| 543 | + foreach ($removeArray as $remove) {
|
|
| 544 | + if (!in_array($remove, $referenceArray)) {
|
|
| 545 | + $list[] = $remove; |
|
| 546 | 546 | } |
| 547 | 547 | } |
| 548 | - return array_merge($referenceArray,$list); |
|
| 548 | + return array_merge($referenceArray, $list); |
|
| 549 | 549 | } |
| 550 | 550 | |
| 551 | 551 | /** |
@@ -553,9 +553,9 @@ discard block |
||
| 553 | 553 | * @param $key |
| 554 | 554 | * @return null |
| 555 | 555 | */ |
| 556 | - public static function isset($array,$key) |
|
| 556 | + public static function isset($array, $key) |
|
| 557 | 557 | {
|
| 558 | - if(isset($array[$key])){
|
|
| 558 | + if (isset($array[$key])) {
|
|
| 559 | 559 | return $array[$key]; |
| 560 | 560 | } |
| 561 | 561 | return null; |
@@ -566,13 +566,13 @@ discard block |
||
| 566 | 566 | * @param null $withKey |
| 567 | 567 | * @return bool |
| 568 | 568 | */ |
| 569 | - public static function isArrayWithCount($array,$withKey=null) |
|
| 569 | + public static function isArrayWithCount($array, $withKey = null) |
|
| 570 | 570 | {
|
| 571 | - if($withKey===null){
|
|
| 571 | + if ($withKey===null) {
|
|
| 572 | 572 | return is_array($array) && count($array); |
| 573 | 573 | } |
| 574 | 574 | |
| 575 | - return isset($array[$withKey]) && self::isArrayWithCount($array[$withKey],null); |
|
| 575 | + return isset($array[$withKey]) && self::isArrayWithCount($array[$withKey], null); |
|
| 576 | 576 | } |
| 577 | 577 | |
| 578 | 578 | /** |
@@ -580,12 +580,12 @@ discard block |
||
| 580 | 580 | * @param $array2 |
| 581 | 581 | * @return int |
| 582 | 582 | */ |
| 583 | - public static function arrayDiffKey($array1,$array2) |
|
| 583 | + public static function arrayDiffKey($array1, $array2) |
|
| 584 | 584 | {
|
| 585 | - $forArray1 = array_diff_key($array1,$array2); |
|
| 586 | - $forArray2 = array_diff_key($array2,$array1); |
|
| 585 | + $forArray1 = array_diff_key($array1, $array2); |
|
| 586 | + $forArray2 = array_diff_key($array2, $array1); |
|
| 587 | 587 | |
| 588 | - if(count($forArray1)=="0" && count($forArray2)=="0"){
|
|
| 588 | + if (count($forArray1)=="0" && count($forArray2)=="0") {
|
|
| 589 | 589 | return true; |
| 590 | 590 | } |
| 591 | 591 | return false; |
@@ -597,12 +597,12 @@ discard block |
||
| 597 | 597 | * @param $original |
| 598 | 598 | * @param array $overwrite |
| 599 | 599 | */ |
| 600 | - public static function overwriteWith($original,$overwrite=array()) |
|
| 600 | + public static function overwriteWith($original, $overwrite = array()) |
|
| 601 | 601 | {
|
| 602 | - foreach ($original as $key=>$item){
|
|
| 602 | + foreach ($original as $key=>$item) {
|
|
| 603 | 603 | |
| 604 | - if(array_key_exists($key,$overwrite)){
|
|
| 605 | - array_splice($original,$key,0,$overwrite[$key]); |
|
| 604 | + if (array_key_exists($key, $overwrite)) {
|
|
| 605 | + array_splice($original, $key, 0, $overwrite[$key]); |
|
| 606 | 606 | } |
| 607 | 607 | } |
| 608 | 608 | |
@@ -16,8 +16,8 @@ discard block |
||
| 16 | 16 | */ |
| 17 | 17 | public static function getSupportedVersions() |
| 18 | 18 | {
|
| 19 | - if(self::checkSupportedVersions()){
|
|
| 20 | - static::$supportedVersions = array_merge(static::$supportedVersions,static::supportedVersions()); |
|
| 19 | + if (self::checkSupportedVersions()) {
|
|
| 20 | + static::$supportedVersions = array_merge(static::$supportedVersions, static::supportedVersions()); |
|
| 21 | 21 | } |
| 22 | 22 | return static::$supportedVersions; |
| 23 | 23 | } |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | */ |
| 30 | 30 | private static function checkSupportedVersions() |
| 31 | 31 | {
|
| 32 | - return method_exists(static::class,'supportedVersions') |
|
| 32 | + return method_exists(static::class, 'supportedVersions') |
|
| 33 | 33 | && is_array(static::supportedVersions()); |
| 34 | 34 | } |
| 35 | 35 | } |
| 36 | 36 | \ No newline at end of file |
@@ -19,11 +19,11 @@ discard block |
||
| 19 | 19 | * @param $command |
| 20 | 20 | * @param $args |
| 21 | 21 | */ |
| 22 | - public function __construct($command,$args) |
|
| 22 | + public function __construct($command, $args) |
|
| 23 | 23 | {
|
| 24 | 24 | $this->arguments[] = 'php'; |
| 25 | 25 | $this->arguments[] = 'api'; |
| 26 | - $this->arguments = array_merge($this->arguments,explode(" ",$command));
|
|
| 26 | + $this->arguments = array_merge($this->arguments, explode(" ", $command));
|
|
| 27 | 27 | $this->arguments[] = strtolower(app); |
| 28 | 28 | $this->arguments[] = $args; |
| 29 | 29 | } |
@@ -35,11 +35,11 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public function handle() |
| 37 | 37 | {
|
| 38 | - $process = new ProcessHandler($this->arguments,root.''); |
|
| 38 | + $process = new ProcessHandler($this->arguments, root.''); |
|
| 39 | 39 | $process->start(); |
| 40 | 40 | |
| 41 | 41 | foreach ($process as $type => $data) {
|
| 42 | - if ($process::OUT !== $type) {
|
|
| 42 | + if ($process::OUT!==$type) {
|
|
| 43 | 43 | return false; |
| 44 | 44 | } |
| 45 | 45 | return true; |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | */ |
| 31 | 31 | public function __construct($namespace = null) |
| 32 | 32 | {
|
| 33 | - if($namespace!==null){
|
|
| 33 | + if ($namespace!==null) {
|
|
| 34 | 34 | $this->namespace = $namespace; |
| 35 | 35 | } |
| 36 | 36 | } |
@@ -41,7 +41,7 @@ discard block |
||
| 41 | 41 | */ |
| 42 | 42 | public function __invoke($namespace = null) |
| 43 | 43 | {
|
| 44 | - if($namespace!==null){
|
|
| 44 | + if ($namespace!==null) {
|
|
| 45 | 45 | $this->namespace = $namespace; |
| 46 | 46 | } |
| 47 | 47 | return $this; |
@@ -54,7 +54,7 @@ discard block |
||
| 54 | 54 | */ |
| 55 | 55 | public function getReflectionClass() |
| 56 | 56 | {
|
| 57 | - if(!isset(static::$singletons['reflectionClass'])){
|
|
| 57 | + if (!isset(static::$singletons['reflectionClass'])) {
|
|
| 58 | 58 | static::$singletons['reflectionClass'] = new \ReflectionClass($this->namespace); |
| 59 | 59 | } |
| 60 | 60 | return static::$singletons['reflectionClass']; |
@@ -68,7 +68,7 @@ discard block |
||
| 68 | 68 | */ |
| 69 | 69 | public function getReflectionMethod($method) |
| 70 | 70 | {
|
| 71 | - return new \ReflectionMethod($this->namespace,$method); |
|
| 71 | + return new \ReflectionMethod($this->namespace, $method); |
|
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | /** |
@@ -7,14 +7,14 @@ |
||
| 7 | 7 | /** |
| 8 | 8 | * @var array $bootLoaders |
| 9 | 9 | */ |
| 10 | - protected static $bootLoaders = ['url','logger']; |
|
| 10 | + protected static $bootLoaders = ['url', 'logger']; |
|
| 11 | 11 | |
| 12 | 12 | /** |
| 13 | 13 | * load bootstrapper dependencies |
| 14 | 14 | * |
| 15 | 15 | * @param array $loaders |
| 16 | 16 | */ |
| 17 | - public static function bootLoader($loaders=array()) |
|
| 17 | + public static function bootLoader($loaders = array()) |
|
| 18 | 18 | {
|
| 19 | 19 | app()->loadIfNotExistBoot($loaders); |
| 20 | 20 | } |
@@ -22,13 +22,13 @@ discard block |
||
| 22 | 22 | * @param $class |
| 23 | 23 | * @return mixed |
| 24 | 24 | */ |
| 25 | - public function macro($class) |
|
| 26 | - {
|
|
| 27 | - $this->class = $class; |
|
| 28 | - $this->macro = $this; |
|
| 25 | + public function macro($class) |
|
| 26 | + {
|
|
| 27 | + $this->class = $class; |
|
| 28 | + $this->macro = $this; |
|
| 29 | 29 | |
| 30 | - return $this; |
|
| 31 | - } |
|
| 30 | + return $this; |
|
| 31 | + } |
|
| 32 | 32 | |
| 33 | 33 | /** |
| 34 | 34 | * get macro property |
@@ -36,10 +36,10 @@ discard block |
||
| 36 | 36 | * @param $name |
| 37 | 37 | * @return mixed |
| 38 | 38 | */ |
| 39 | - public function __get($name) |
|
| 40 | - {
|
|
| 41 | - return ClosureDispatcher::bind($this->class)->call(function() use($name){
|
|
| 42 | - return $this->{$name};
|
|
| 43 | - }); |
|
| 44 | - } |
|
| 39 | + public function __get($name) |
|
| 40 | + {
|
|
| 41 | + return ClosureDispatcher::bind($this->class)->call(function() use($name){
|
|
| 42 | + return $this->{$name};
|
|
| 43 | + }); |
|
| 44 | + } |
|
| 45 | 45 | } |
| 46 | 46 | \ No newline at end of file |
@@ -24,7 +24,7 @@ |
||
| 24 | 24 | */ |
| 25 | 25 | public function macro($class) |
| 26 | 26 | {
|
| 27 | - $this->class = $class; |
|
| 27 | + $this->class = $class; |
|
| 28 | 28 | $this->macro = $this; |
| 29 | 29 | |
| 30 | 30 | return $this; |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | */ |
| 36 | 36 | public static function after($subject, $search) |
| 37 | 37 | {
|
| 38 | - return $search === '' ? $subject : array_reverse(explode($search, $subject, 2))[0]; |
|
| 38 | + return $search==='' ? $subject : array_reverse(explode($search, $subject, 2))[0]; |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | 41 | /** |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | {
|
| 50 | 50 | $languageSpecific = static::languageSpecificCharsArray($language); |
| 51 | 51 | |
| 52 | - if (! is_null($languageSpecific)) {
|
|
| 52 | + if (!is_null($languageSpecific)) {
|
|
| 53 | 53 | $value = str_replace($languageSpecific[0], $languageSpecific[1], $value); |
| 54 | 54 | } |
| 55 | 55 | |
@@ -69,7 +69,7 @@ discard block |
||
| 69 | 69 | */ |
| 70 | 70 | public static function before($subject, $search) |
| 71 | 71 | {
|
| 72 | - return $search === '' ? $subject : explode($search, $subject)[0]; |
|
| 72 | + return $search==='' ? $subject : explode($search, $subject)[0]; |
|
| 73 | 73 | } |
| 74 | 74 | |
| 75 | 75 | /** |
@@ -96,8 +96,8 @@ discard block |
||
| 96 | 96 | */ |
| 97 | 97 | public static function contains($haystack, $needles) |
| 98 | 98 | {
|
| 99 | - foreach ((array) $needles as $needle) {
|
|
| 100 | - if ($needle !== '' && mb_strpos($haystack, $needle) !== false) {
|
|
| 99 | + foreach ((array)$needles as $needle) {
|
|
| 100 | + if ($needle!=='' && mb_strpos($haystack, $needle)!==false) {
|
|
| 101 | 101 | return true; |
| 102 | 102 | } |
| 103 | 103 | } |
@@ -114,8 +114,8 @@ discard block |
||
| 114 | 114 | */ |
| 115 | 115 | public static function endsWith($haystack, $needles) |
| 116 | 116 | {
|
| 117 | - foreach ((array) $needles as $needle) {
|
|
| 118 | - if (mb_substr($haystack, -mb_strlen($needle)) === (string) $needle) {
|
|
| 117 | + foreach ((array)$needles as $needle) {
|
|
| 118 | + if (mb_substr($haystack, -mb_strlen($needle))===(string)$needle) {
|
|
| 119 | 119 | return true; |
| 120 | 120 | } |
| 121 | 121 | } |
@@ -146,7 +146,7 @@ discard block |
||
| 146 | 146 | */ |
| 147 | 147 | public static function is($pattern, $value) |
| 148 | 148 | {
|
| 149 | - $patterns = is_array($pattern) ? $pattern : (array) $pattern; |
|
| 149 | + $patterns = is_array($pattern) ? $pattern : (array)$pattern; |
|
| 150 | 150 | |
| 151 | 151 | if (empty($patterns)) {
|
| 152 | 152 | return false; |
@@ -156,7 +156,7 @@ discard block |
||
| 156 | 156 | // If the given value is an exact match we can of course return true right |
| 157 | 157 | // from the beginning. Otherwise, we will translate asterisks and do an |
| 158 | 158 | // actual pattern match against the two strings to see if they match. |
| 159 | - if ($pattern == $value) {
|
|
| 159 | + if ($pattern==$value) {
|
|
| 160 | 160 | return true; |
| 161 | 161 | } |
| 162 | 162 | |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | // pattern such as "library/*", making any string check convenient. |
| 168 | 168 | $pattern = str_replace('\*', '.*', $pattern);
|
| 169 | 169 | |
| 170 | - if (preg_match('#^'.$pattern.'\z#u', $value) === 1) {
|
|
| 170 | + if (preg_match('#^'.$pattern.'\z#u', $value)===1) {
|
|
| 171 | 171 | return true; |
| 172 | 172 | } |
| 173 | 173 | } |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | */ |
| 213 | 213 | public static function limit($value, $limit = 100, $end = '...') |
| 214 | 214 | {
|
| 215 | - if (mb_strwidth($value, 'UTF-8') <= $limit) {
|
|
| 215 | + if (mb_strwidth($value, 'UTF-8')<=$limit) {
|
|
| 216 | 216 | return $value; |
| 217 | 217 | } |
| 218 | 218 | |
@@ -238,9 +238,9 @@ discard block |
||
| 238 | 238 | * @param string $case |
| 239 | 239 | * @return string |
| 240 | 240 | */ |
| 241 | - public static function crop($value,$crop,$case='lower') |
|
| 241 | + public static function crop($value, $crop, $case = 'lower') |
|
| 242 | 242 | {
|
| 243 | - return static::$case(str_replace($crop,'',$value)); |
|
| 243 | + return static::$case(str_replace($crop, '', $value)); |
|
| 244 | 244 | } |
| 245 | 245 | |
| 246 | 246 | /** |
@@ -255,7 +255,7 @@ discard block |
||
| 255 | 255 | {
|
| 256 | 256 | preg_match('/^\s*+(?:\S++\s*+){1,'.$words.'}/u', $value, $matches);
|
| 257 | 257 | |
| 258 | - if (! isset($matches[0]) || static::length($value) === static::length($matches[0])) {
|
|
| 258 | + if (!isset($matches[0]) || static::length($value)===static::length($matches[0])) {
|
|
| 259 | 259 | return $value; |
| 260 | 260 | } |
| 261 | 261 | |
@@ -284,8 +284,8 @@ discard block |
||
| 284 | 284 | {
|
| 285 | 285 | $string = ''; |
| 286 | 286 | |
| 287 | - while (($len = strlen($string)) < $length) {
|
|
| 288 | - $size = $length - $len; |
|
| 287 | + while (($len = strlen($string))<$length) {
|
|
| 288 | + $size = $length-$len; |
|
| 289 | 289 | |
| 290 | 290 | $bytes = random_bytes($size); |
| 291 | 291 | |
@@ -322,14 +322,14 @@ discard block |
||
| 322 | 322 | */ |
| 323 | 323 | public static function replaceFirst($search, $replace, $subject) |
| 324 | 324 | {
|
| 325 | - if ($search == '') {
|
|
| 325 | + if ($search=='') {
|
|
| 326 | 326 | return $subject; |
| 327 | 327 | } |
| 328 | 328 | |
| 329 | 329 | $position = mb_strpos($subject, $search); |
| 330 | 330 | |
| 331 | - if ($position !== false) {
|
|
| 332 | - return mb_substr($subject, 0, $position).$replace.mb_substr($subject, $position + mb_strlen($search)); |
|
| 331 | + if ($position!==false) {
|
|
| 332 | + return mb_substr($subject, 0, $position).$replace.mb_substr($subject, $position+mb_strlen($search)); |
|
| 333 | 333 | } |
| 334 | 334 | |
| 335 | 335 | return $subject; |
@@ -347,8 +347,8 @@ discard block |
||
| 347 | 347 | {
|
| 348 | 348 | $position = mb_strrpos($subject, $search); |
| 349 | 349 | |
| 350 | - if ($position !== false) {
|
|
| 351 | - return mb_substr($subject, 0, $position).$replace.mb_substr($subject, $position + mb_strlen($search)); |
|
| 350 | + if ($position!==false) {
|
|
| 351 | + return mb_substr($subject, 0, $position).$replace.mb_substr($subject, $position+mb_strlen($search)); |
|
| 352 | 352 | } |
| 353 | 353 | |
| 354 | 354 | return $subject; |
@@ -403,7 +403,7 @@ discard block |
||
| 403 | 403 | $title = static::ascii($title, $language); |
| 404 | 404 | |
| 405 | 405 | // Convert all dashes/underscores into separator |
| 406 | - $flip = $separator == '-' ? '_' : '-'; |
|
| 406 | + $flip = $separator=='-' ? '_' : '-'; |
|
| 407 | 407 | |
| 408 | 408 | $title = preg_replace('!['.preg_quote($flip).']+!u', $separator, $title);
|
| 409 | 409 | |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | return static::$snakeCache[$key][$delimiter]; |
| 435 | 435 | } |
| 436 | 436 | |
| 437 | - if (! ctype_lower($value)) {
|
|
| 437 | + if (!ctype_lower($value)) {
|
|
| 438 | 438 | $value = preg_replace('/\s+/u', '', ucwords($value));
|
| 439 | 439 | |
| 440 | 440 | $value = static::lower(preg_replace('/(.)(?=[A-Z])/u', '$1'.$delimiter, $value));
|
@@ -452,8 +452,8 @@ discard block |
||
| 452 | 452 | */ |
| 453 | 453 | public static function startsWith($haystack, $needles) |
| 454 | 454 | {
|
| 455 | - foreach ((array) $needles as $needle) {
|
|
| 456 | - if ($needle !== '' && mb_substr($haystack, 0, mb_strlen($needle)) === (string) $needle) {
|
|
| 455 | + foreach ((array)$needles as $needle) {
|
|
| 456 | + if ($needle!=='' && mb_substr($haystack, 0, mb_strlen($needle))===(string)$needle) {
|
|
| 457 | 457 | return true; |
| 458 | 458 | } |
| 459 | 459 | } |
@@ -652,14 +652,14 @@ discard block |
||
| 652 | 652 | {
|
| 653 | 653 | static $languageSpecific; |
| 654 | 654 | |
| 655 | - if (! isset($languageSpecific)) {
|
|
| 655 | + if (!isset($languageSpecific)) {
|
|
| 656 | 656 | $languageSpecific = [ |
| 657 | 657 | 'bg' => [ |
| 658 | 658 | ['х', 'Х', 'щ', 'Щ', 'ъ', 'Ъ', 'ь', 'Ь'], |
| 659 | 659 | ['h', 'H', 'sht', 'SHT', 'a', 'А', 'y', 'Y'], |
| 660 | 660 | ], |
| 661 | 661 | 'de' => [ |
| 662 | - ['ä', 'ö', 'ü', 'Ä', 'Ö', 'Ü'], |
|
| 662 | + ['ä', 'ö', 'ü', 'Ä', 'Ö', 'Ü'], |
|
| 663 | 663 | ['ae', 'oe', 'ue', 'AE', 'OE', 'UE'], |
| 664 | 664 | ], |
| 665 | 665 | ]; |
@@ -674,7 +674,7 @@ discard block |
||
| 674 | 674 | */ |
| 675 | 675 | public static function slashToBackSlash($data) |
| 676 | 676 | {
|
| 677 | - return str_replace("\\","/",$data);
|
|
| 677 | + return str_replace("\\", "/", $data);
|
|
| 678 | 678 | } |
| 679 | 679 | |
| 680 | 680 | /** |
@@ -682,25 +682,25 @@ discard block |
||
| 682 | 682 | * @param string $explode |
| 683 | 683 | * @return array |
| 684 | 684 | */ |
| 685 | - public static function stringToArray($string,$explode=".") |
|
| 685 | + public static function stringToArray($string, $explode = ".") |
|
| 686 | 686 | {
|
| 687 | - return explode($explode,$string); |
|
| 687 | + return explode($explode, $string); |
|
| 688 | 688 | } |
| 689 | 689 | |
| 690 | 690 | /** |
| 691 | 691 | * @param null $removeCharacter |
| 692 | 692 | * @return null|string|string[] |
| 693 | 693 | */ |
| 694 | - public static function removeCharacterFromUri($removeCharacter=null) |
|
| 694 | + public static function removeCharacterFromUri($removeCharacter = null) |
|
| 695 | 695 | {
|
| 696 | - if($removeCharacter!==null){
|
|
| 696 | + if ($removeCharacter!==null) {
|
|
| 697 | 697 | $query = request()->query->all(); |
| 698 | 698 | |
| 699 | - if(count($query)=='1' && isset($query[$removeCharacter])){
|
|
| 700 | - return preg_replace('@'.$removeCharacter.'=(.*)|\?@is','',fullUrl());
|
|
| 699 | + if (count($query)=='1' && isset($query[$removeCharacter])) {
|
|
| 700 | + return preg_replace('@'.$removeCharacter.'=(.*)|\?@is', '', fullUrl());
|
|
| 701 | 701 | } |
| 702 | 702 | |
| 703 | - return preg_replace('@'.$removeCharacter.'=\d+\&|\&'.$removeCharacter.'=\d+@is','',fullUrl());
|
|
| 703 | + return preg_replace('@'.$removeCharacter.'=\d+\&|\&'.$removeCharacter.'=\d+@is', '', fullUrl());
|
|
| 704 | 704 | } |
| 705 | 705 | |
| 706 | 706 | } |