Skip to content

Commit

Permalink
First run of upgraded linters
Browse files Browse the repository at this point in the history
  • Loading branch information
musimana committed Jul 23, 2024
1 parent 76e8cf2 commit d6e2620
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/Unit/App/Http/Requests/Auth/LoginRequestTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Validation\ValidationException;

beforeEach(function () {
$this->subject = new LoginRequest();
$this->subject = new LoginRequest;
});

arch('it implements the expected interface')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
->toImplement(ConstantStringFormatterInterface::class);

test('getValue returns ok with valid inputs', function () {
$actual = (new LaravelVersionFormatterResource())->getValue();
$actual = (new LaravelVersionFormatterResource)->getValue();

expect($actual)
->toBeString()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
->toImplement(ConstantStringFormatterInterface::class);

test('getValue returns ok with valid inputs', function () {
$actual = (new PhpVersionFormatterResource())->getValue();
$actual = (new PhpVersionFormatterResource)->getValue();

expect($actual)
->toBeString()
Expand Down

0 comments on commit d6e2620

Please sign in to comment.