@@ -5,8 +5,8 @@ |
||
5 | 5 | use Symplify\EasyCodingStandard\Config\ECSConfig; |
6 | 6 | use Symplify\EasyCodingStandard\ValueObject\Set\SetList; |
7 | 7 | |
8 | -return static function (ECSConfig $ecsConfig): void { |
|
9 | - $ecsConfig->paths([__DIR__ . '/src', __DIR__ . '/tests',]); |
|
8 | +return static function(ECSConfig $ecsConfig): void { |
|
9 | + $ecsConfig->paths([__DIR__ . '/src', __DIR__ . '/tests', ]); |
|
10 | 10 | $ecsConfig->sets([ |
11 | 11 | SetList::PSR_12, |
12 | 12 | SetList::CLEAN_CODE, |
@@ -485,7 +485,7 @@ discard block |
||
485 | 485 | { |
486 | 486 | return static::decBaseHelper( |
487 | 487 | $base, |
488 | - static function (int $base) use ($number) { |
|
488 | + static function(int $base) use ($number) { |
|
489 | 489 | $value = ''; |
490 | 490 | if ($number === '0') { |
491 | 491 | return chr((int)$number); |
@@ -557,7 +557,7 @@ discard block |
||
557 | 557 | { |
558 | 558 | return static::decBaseHelper( |
559 | 559 | $base, |
560 | - static function (int $base) use ($binary) { |
|
560 | + static function(int $base) use ($binary) { |
|
561 | 561 | $size = strlen($binary); |
562 | 562 | $return = '0'; |
563 | 563 | for ($i = 0; $i < $size; ++$i) { |