Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
rupadana authored and github-actions[bot] committed Oct 28, 2024
1 parent d1b5fbd commit 64424fb
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
4 changes: 1 addition & 3 deletions src/FilamentSwiper.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,4 @@

namespace Rupadana\FilamentSwiper;

class FilamentSwiper
{
}
class FilamentSwiper {}
6 changes: 2 additions & 4 deletions src/FilamentSwiperServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@ public function configurePackage(Package $package): void
}
}

public function packageRegistered(): void
{
}
public function packageRegistered(): void {}

public function packageBooted(): void
{
Expand Down Expand Up @@ -81,7 +79,7 @@ public function packageBooted(): void
}

// Testing
Testable::mixin(new TestsFilamentSwiper());
Testable::mixin(new TestsFilamentSwiper);
}

protected function getAssetPackageName(): ?string
Expand Down
2 changes: 1 addition & 1 deletion src/Views/ViewComponent.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ class ViewComponent extends \Filament\Support\Components\ViewComponent
{
public static function make()
{
return new static();
return new static;
}
}
2 changes: 1 addition & 1 deletion src/Widgets/Components/Swiper.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class Swiper extends ViewComponent

public static function make()
{
$static = new static();
$static = new static;

return $static;
}
Expand Down

0 comments on commit 64424fb

Please sign in to comment.