Skip to content

Commit a7048ea

Browse files
committed
chore: run php-cs-fixer for all classes
1 parent 84642f7 commit a7048ea

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+345
-67
lines changed

src/Arr/ArrObject.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Arr;
411

@@ -11,5 +18,4 @@
1118
*/
1219
class ArrObject extends DataObject
1320
{
14-
1521
}

src/Arr/ArrayHelper.php

+8-8
Original file line numberDiff line numberDiff line change
@@ -749,14 +749,14 @@ public static function toString(
749749

750750
if (is_array($value)) {
751751
$string .= $keyStr . 'Array(' . self::toString(
752-
$value,
753-
$length,
754-
$cycles,
755-
$showKey,
756-
$addMark,
757-
$separator,
758-
$string
759-
) . ')' . $separator;
752+
$value,
753+
$length,
754+
$cycles,
755+
$showKey,
756+
$addMark,
757+
$separator,
758+
$string
759+
) . ')' . $separator;
760760
} elseif (is_object($value)) {
761761
$string .= $keyStr . 'Object(' . get_class($value) . ')' . $separator;
762762
} elseif (is_resource($value)) {

src/Arr/ArrayWrap.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Arr;
411

@@ -11,5 +18,4 @@
1118
*/
1219
class ArrayWrap extends DataObject
1320
{
14-
1521
}

src/Helper/Assert.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Helper;
411

@@ -296,7 +303,7 @@ public static function isFile(string $path, string $errMsg = ''): void
296303
public static function isResource($res, string $errMsg = ''): void
297304
{
298305
if (!is_resource($res)) {
299-
throw static::createEx($errMsg ?: "Excepted an resource");
306+
throw static::createEx($errMsg ?: 'Excepted an resource');
300307
}
301308
}
302309

src/Helper/BasePhpTestCase.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Helper;
411

src/Helper/NumHelper.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Helper;
411

src/Helper/PhpHelper.php

-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
use function sprintf;
4444
use function stat;
4545
use function strlen;
46-
use function strpos;
4746
use function strtoupper;
4847
use function var_dump;
4948
use function var_export;

src/Helper/Valid.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Helper;
411

src/Math.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@
1818
*/
1919
class Math extends NumHelper
2020
{
21-
2221
}

src/Num.php

-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@
1818
*/
1919
class Num extends NumHelper
2020
{
21-
2221
}

src/Obj/AbstractObj.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Obj;
411

src/Obj/DataObject.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*
2323
* @package Toolkit\Stdlib\Obj
2424
*/
25-
class DataObject extends ArrayObject implements JsonSerializable
25+
class DataObject extends ArrayObject implements JsonSerializable
2626
{
2727
/**
2828
* @param array $data

src/Obj/Exception/ContainerException.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Obj\Exception;
411

@@ -12,5 +19,4 @@
1219
*/
1320
class ContainerException extends RuntimeException implements ContainerExceptionInterface
1421
{
15-
1622
}

src/Obj/Exception/NotFoundException.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Obj\Exception;
411

@@ -12,5 +19,4 @@
1219
*/
1320
class NotFoundException extends RuntimeException implements NotFoundExceptionInterface
1421
{
15-
1622
}

src/Obj/ObjectBox.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Obj;
411

src/Obj/Traits/AutoConfigTrait.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Obj\Traits;
411

src/Obj/Traits/NameAliasTrait.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Obj\Traits;
411

src/Obj/Traits/QuickInitTrait.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Obj\Traits;
411

src/Std.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib;
411

src/Std/BaseEnum.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Std;
411

@@ -22,7 +29,6 @@
2229
*/
2330
abstract class BaseEnum implements JsonSerializable
2431
{
25-
2632
/**
2733
* Store existing constants in a static cache per object.
2834
*

src/Std/Collection.php

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Std;
411

@@ -446,7 +453,7 @@ public function __get(string $name)
446453
* @param string $name
447454
* @param $value
448455
*/
449-
public function __set(string $name, $value)
456+
public function __set(string $name, $value): void
450457
{
451458
$this->set($name, $value);
452459
}

src/Str/StrBuilder.php

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Str;
411

@@ -7,5 +14,4 @@
714
*/
815
class StrBuilder extends StrBuffer
916
{
10-
1117
}

src/Str/StrValue.php

+7
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11
<?php declare(strict_types=1);
2+
/**
3+
* This file is part of toolkit/stdlib.
4+
*
5+
* @author https://github.com/inhere
6+
* @link https://github.com/php-toolkit/stdlib
7+
* @license MIT
8+
*/
29

310
namespace Toolkit\Stdlib\Str;
411

src/Str/StringHelper.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@
3030
use function hash;
3131
use function hex2bin;
3232
use function is_int;
33-
use function is_string;
3433
use function mb_strwidth;
3534
use function microtime;
3635
use function preg_match;
@@ -59,6 +58,7 @@ abstract class StringHelper
5958
{
6059
// These words will be as a Boolean value
6160
public const TRUE_WORDS = '|on|yes|true|';
61+
6262
public const FALSE_WORDS = '|off|no|false|';
6363

6464
public static string $defaultEncoding = 'UTF-8';
@@ -355,7 +355,7 @@ public static function escapeToken(string $token): string
355355
*/
356356
public static function removeQuotes(string $str): string
357357
{
358-
if (preg_match("/^\".*\"$/", $str) || preg_match("/^'.*'$/", $str)) {
358+
if (preg_match('/^".*"$/', $str) || preg_match("/^'.*'$/", $str)) {
359359
return mb_substr($str, 1, -1);
360360
}
361361

@@ -376,7 +376,7 @@ public static function paramQuotes(string $str, bool $quoteAll = false): string
376376

377377
if (
378378
!$quoteAll &&
379-
(preg_match("/^\".*\"$/", $str) || preg_match("/^'.*'$/", $str))
379+
(preg_match('/^".*"$/', $str) || preg_match("/^'.*'$/", $str))
380380
) {
381381
return $str;
382382
}

src/Str/Traits/StringCaseHelperTrait.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ public static function toUpper(int|string $str): string
122122
*/
123123
public static function strtoupper(int|string $str): string
124124
{
125-
return self::toUpper($str);
125+
return self::toUpper($str);
126126
}
127127

128128
/**
@@ -201,7 +201,7 @@ public static function toCamelCase(string $str, bool $upperFirst = false): strin
201201
$str = self::ucfirst($str);
202202
}
203203

204-
return preg_replace_callback('/[\s_-]+([a-z])/', static fn($c) => strtoupper($c[1]), $str);
204+
return preg_replace_callback('/[\s_-]+([a-z])/', static fn ($c) => strtoupper($c[1]), $str);
205205
}
206206

207207
/**

src/Str/Traits/StringCheckHelperTrait.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ public static function hasAll(string $string, array|string $needle): bool
140140
}
141141

142142
if (is_array($needle)) {
143-
foreach ((array)$needle as $item) {
143+
foreach ($needle as $item) {
144144
if (!str_contains($string, $item)) {
145145
return false;
146146
}

src/Str/Traits/StringConvertTrait.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,8 @@ public static function toNoEmptyArray(string $str, string $sep = ',', int $limit
253253
*/
254254
public static function splitNoEmptyArray(string $str, string $sep = ',', int $limit = 0): array
255255
{
256-
return self::toNoEmptyArray($str, $sep, $limit);;
256+
return self::toNoEmptyArray($str, $sep, $limit);
257+
;
257258
}
258259

259260
/**

0 commit comments

Comments
 (0)