Skip to content

Commit c3563ae

Browse files
lukas-freygithub-actions[bot]
authored andcommitted
style: fix code styling
1 parent 9233220 commit c3563ae

File tree

5 files changed

+4
-6
lines changed

5 files changed

+4
-6
lines changed

src/Concerns/WithAlphabet.php

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
trait WithAlphabet
88
{
9-
109
public function alphabet(string $alphabet): static
1110
{
1211
$this->alphabet = $alphabet;

src/Concerns/WithMinLength.php

-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66

77
trait WithMinLength
88
{
9-
109
public function minLength(int $minLength): static
1110
{
1211
$this->minLength = $minLength;
@@ -18,5 +17,4 @@ public function getMinLength(): int
1817
{
1918
return $this->minLength ?? Sqids::DEFAULT_MIN_LENGTH;
2019
}
21-
2220
}

src/Concerns/WithSalt.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ trait WithSalt
66
{
77
protected ?int $salt = null;
88

9-
public function salt(string | int $salt = null): static
9+
public function salt(string | int | null $salt = null): static
1010
{
1111
$this->salt = crc32($salt ?? static::class);
1212

src/SqidsServiceProvider.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ public function configurePackage(Package $package): void
1515
* More info: https://github.com/spatie/laravel-package-tools
1616
*/
1717
$package
18-
->name('sqids-for-laravel');
18+
->name('sqids-for-laravel')
19+
;
1920

2021
$this->app->bind(Sqids::class, function ($app, $parameters) {
2122
return new Sqids(...$parameters);

tests/TestCase.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace Guava\Sqids\Tests;
44

5+
use Guava\Sqids\SqidsServiceProvider;
56
use Illuminate\Database\Eloquent\Factories\Factory;
67
use Orchestra\Testbench\TestCase as Orchestra;
7-
use Guava\Sqids\SqidsServiceProvider;
88

99
class TestCase extends Orchestra
1010
{

0 commit comments

Comments
 (0)