Skip to content

Commit

Permalink
Run php-cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
emmachughes authored and github-actions[bot] committed Jan 29, 2025
1 parent 28c62fd commit 620b931
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions sourcecode/hub/app/Http/Requests/Api/UserRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
use App\Models\User;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;

use function is_string;
use function strtolower;

Expand Down
1 change: 1 addition & 0 deletions sourcecode/hub/app/Http/Requests/StoreUserRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
use Illuminate\Validation\Rules\Password;

use function is_string;
use function strtolower;

Expand Down
1 change: 1 addition & 0 deletions sourcecode/hub/app/Http/Requests/UpdateUserRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rules\Password;

use function is_string;
use function strtolower;

Expand Down
2 changes: 1 addition & 1 deletion sourcecode/hub/tests/Browser/UserTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public function testEmailIsNormalizedUponChanging(): void
// The login should be invalid if the email didn't normalize.
// In that case, we wouldn't be able to see these.
->assertSee('Account updated successfully')
->assertInputValue('email', '[email protected]')
->assertInputValue('email', '[email protected]'),
);
}

Expand Down

0 comments on commit 620b931

Please sign in to comment.