Skip to content

Commit 0614324

Browse files
awcodesgithub-actions[bot]
authored andcommitted
Fix styling
1 parent c264589 commit 0614324

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

configure.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@
195195
'rector/rector',
196196
], 'require-dev');
197197

198-
removeComposerDeps(['refactor', 'test:refactor', ], 'scripts');
198+
removeComposerDeps(['refactor', 'test:refactor'], 'scripts');
199199
}
200200

201201
if (! $useUpdateChangelogWorkflow) {

rector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
return RectorConfig::configure()
66
->withPaths([
7-
__DIR__.'/src',
7+
__DIR__ . '/src',
88
])
99
->withPreparedSets(
1010
deadCode: true,

src/Skeleton.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,4 @@
22

33
namespace VendorName\Skeleton;
44

5-
class Skeleton
6-
{
7-
}
5+
class Skeleton {}

src/SkeletonServiceProvider.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,7 @@ public function configurePackage(Package $package): void
5858
}
5959
}
6060

61-
public function packageRegistered(): void
62-
{
63-
}
61+
public function packageRegistered(): void {}
6462

6563
public function packageBooted(): void
6664
{
@@ -88,7 +86,7 @@ public function packageBooted(): void
8886
}
8987

9088
// Testing
91-
Testable::mixin(new TestsSkeleton());
89+
Testable::mixin(new TestsSkeleton);
9290
}
9391

9492
protected function getAssetPackageName(): ?string

tests/TestCase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,6 @@ public function getEnvironmentSetUp($app): void
6666

6767
protected function defineDatabaseMigrations(): void
6868
{
69-
$this->loadMigrationsFrom(__DIR__.'/../database/migrations');
69+
$this->loadMigrationsFrom(__DIR__ . '/../database/migrations');
7070
}
7171
}

0 commit comments

Comments
 (0)