Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet authored and github-actions[bot] committed Aug 21, 2024
1 parent 8acff78 commit 70ed091
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 18 deletions.
4 changes: 1 addition & 3 deletions src/Bus/UncachedPersistentBusFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ class UncachedPersistentBusFake
{
use ForwardsCalls;

public function __construct(private PersistentBusFake $fake)
{
}
public function __construct(private PersistentBusFake $fake) {}

/**
* Handle dynamic method calls into the fake.
Expand Down
4 changes: 1 addition & 3 deletions src/Mails/UncachedPersistentMailFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ class UncachedPersistentMailFake
{
use ForwardsCalls;

public function __construct(private PersistentMailFake $fake)
{
}
public function __construct(private PersistentMailFake $fake) {}

/**
* Handle dynamic method calls into the fake.
Expand Down
4 changes: 1 addition & 3 deletions src/Notifications/UncachedPersistentNotificationFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ class UncachedPersistentNotificationFake
{
use ForwardsCalls;

public function __construct(private PersistentNotificationFake $fake)
{
}
public function __construct(private PersistentNotificationFake $fake) {}

/**
* Handle dynamic method calls into the fake.
Expand Down
4 changes: 1 addition & 3 deletions src/Queue/UncachedPersistentQueueFake.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ class UncachedPersistentQueueFake
{
use ForwardsCalls;

public function __construct(private PersistentQueueFake $fake)
{
}
public function __construct(private PersistentQueueFake $fake) {}

/**
* Handle dynamic method calls into the fake.
Expand Down
4 changes: 1 addition & 3 deletions tests/DummyMail.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,4 @@

use Illuminate\Mail\Mailable;

class DummyMail extends Mailable
{
}
class DummyMail extends Mailable {}
4 changes: 1 addition & 3 deletions tests/DummyNotification.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,5 @@ public function via()
return ['mail'];
}

public function toMail()
{
}
public function toMail() {}
}

0 comments on commit 70ed091

Please sign in to comment.