Skip to content

Commit 660381a

Browse files
committed
Fix code style
1 parent 2ee121f commit 660381a

36 files changed

+51
-45
lines changed

backend/app/Action/Auth/AuthenticationResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types = 1);
3+
declare(strict_types=1);
44

55
namespace App\Action\Auth;
66

backend/app/Action/Auth/GetAuthenticatedUserAction.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types = 1);
3+
declare(strict_types=1);
44

55
namespace App\Action\Auth;
66

@@ -12,4 +12,4 @@ public function execute(): GetAuthenticatedUserResponse
1212
{
1313
return new GetAuthenticatedUserResponse(Auth::user());
1414
}
15-
}
15+
}

backend/app/Action/Auth/GetAuthenticatedUserResponse.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types = 1);
3+
declare(strict_types=1);
44

55
namespace App\Action\Auth;
66

backend/app/Action/Auth/LoginAction.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types = 1);
3+
declare(strict_types=1);
44

55
namespace App\Action\Auth;
66

@@ -26,4 +26,4 @@ public function execute(LoginRequest $request): AuthenticationResponse
2626
auth()->factory()->getTTL() * 60
2727
);
2828
}
29-
}
29+
}

backend/app/Action/Auth/LoginRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types = 1);
3+
declare(strict_types=1);
44

55
namespace App\Action\Auth;
66

backend/app/Action/Auth/LogoutAction.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types = 1);
3+
declare(strict_types=1);
44

55
namespace App\Action\Auth;
66

@@ -12,4 +12,4 @@ public function execute(): void
1212
{
1313
Auth::logout();
1414
}
15-
}
15+
}

backend/app/Action/Auth/RegisterAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types = 1);
3+
declare(strict_types=1);
44

55
namespace App\Action\Auth;
66

backend/app/Action/Auth/RegisterRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types = 1);
3+
declare(strict_types=1);
44

55
namespace App\Action\Auth;
66

backend/app/Action/Auth/UpdateProfileAction.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types = 1);
3+
declare(strict_types=1);
44

55
namespace App\Action\Auth;
66

backend/app/Action/Auth/UpdateProfileRequest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
declare(strict_types = 1);
3+
declare(strict_types=1);
44

55
namespace App\Action\Auth;
66

0 commit comments

Comments
 (0)