Skip to content

Commit

Permalink
fix linting errors
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanbarrett committed Mar 24, 2024
1 parent a5a84a9 commit 6f90fab
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
4 changes: 3 additions & 1 deletion app/Http/Controllers/Controller.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace App\Http\Controllers;

Expand Down
4 changes: 3 additions & 1 deletion app/Mail/ForgotPassword.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace App\Mail;

Expand Down
4 changes: 3 additions & 1 deletion app/Mail/VerifyEmail.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace App\Mail;

Expand Down
7 changes: 6 additions & 1 deletion app/Models/User.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace App\Models;

Expand All @@ -9,6 +11,9 @@
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;

/**
* @property \Carbon\Carbon|null $email_verified_at
*/
#[ObservedBy([UserObserver::class])]
class User extends Authenticatable
{
Expand Down
4 changes: 3 additions & 1 deletion app/Providers/AppServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<?php declare(strict_types=1);
<?php

declare(strict_types=1);

namespace App\Providers;

Expand Down
1 change: 0 additions & 1 deletion tests/Feature/AuthRegistrationTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ class AuthRegistrationTest extends TestCase

/**
* @test
* @group testing
*/
public function it_should_register_a_user_with_valid_data(): void
{
Expand Down

0 comments on commit 6f90fab

Please sign in to comment.