Skip to content

Commit 99510e1

Browse files
iamfarhadgithub-actions[bot]
authored andcommitted
PHP Linting (Pint)
1 parent 84d322c commit 99510e1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

tests/Feature/UserAuthenticationTrackingTest.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function resolve(): array
3838
{
3939
$user = Auth::user();
4040

41-
if (!$user) {
41+
if (! $user) {
4242
return ['type' => null, 'id' => null];
4343
}
4444

@@ -90,7 +90,7 @@ public function resolve(): array
9090
{
9191
$user = Auth::user();
9292

93-
if (!$user) {
93+
if (! $user) {
9494
return ['type' => null, 'id' => null];
9595
}
9696

@@ -188,7 +188,7 @@ public function resolve(): array
188188
{
189189
$user = Auth::user();
190190

191-
if (!$user) {
191+
if (! $user) {
192192
return ['type' => null, 'id' => null];
193193
}
194194

@@ -254,7 +254,7 @@ public function resolve(): array
254254
{
255255
$user = Auth::user();
256256

257-
if (!$user) {
257+
if (! $user) {
258258
return ['type' => null, 'id' => null];
259259
}
260260

@@ -303,7 +303,7 @@ public function resolve(): array
303303
{
304304
$user = Auth::user();
305305

306-
if (!$user) {
306+
if (! $user) {
307307
return ['type' => null, 'id' => null];
308308
}
309309

0 commit comments

Comments
 (0)