Skip to content

Commit 48224ad

Browse files
bradyrentinggithub-actions[bot]
authored andcommitted
Fix styling
1 parent dfa752b commit 48224ad

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

routes/web.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
use BradyRenting\FilamentPasswordless\Http\Controllers\HandleMagicLinkController;
4-
use Illuminate\Support\Facades\Route;
54
use Filament\Facades\Filament;
5+
use Illuminate\Support\Facades\Route;
66

77
foreach (Filament::getPanels() as $panel) {
88
if (! $panel->hasPlugin('filament-passwordless')) {

src/FilamentPasswordlessPlugin.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?php
2-
2+
33
namespace BradyRenting\FilamentPasswordless;
4-
4+
55
use BradyRenting\FilamentPasswordless\Http\Livewire\Auth\Login;
66
use Filament\Contracts\Plugin;
77
use Filament\Panel;
88
use Illuminate\Contracts\Auth\Authenticatable;
9-
9+
1010
class FilamentPasswordlessPlugin implements Plugin
1111
{
1212
protected string $model;
@@ -25,13 +25,13 @@ public function getId(): string
2525
{
2626
return 'filament-passwordless';
2727
}
28-
28+
2929
public function register(Panel $panel): void
3030
{
3131
$panel
3232
->login(Login::class);
3333
}
34-
34+
3535
public function boot(Panel $panel): void
3636
{
3737
//

0 commit comments

Comments
 (0)