Skip to content

Commit c85112d

Browse files
committed
Fix auth presenter namespace
1 parent 160f3b1 commit c85112d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/app/Http/Controllers/Api/Auth/AuthController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
use App\Action\Auth\UploadProfileImageAction;
1616
use App\Action\Auth\UploadProfileImageRequest;
1717
use App\Http\Controllers\ApiController;
18-
use App\Http\Presenter\Auth\AuthenticationResponseArrayPresenter;
18+
use App\Http\Presenter\AuthenticationResponseArrayPresenter;
1919
use App\Http\Presenter\UserArrayPresenter;
2020
use App\Http\Request\Api\Auth\RegisterHttpRequest;
2121
use App\Http\Request\Api\Auth\LoginHttpRequest;

backend/app/Http/Presenter/Auth/AuthenticationResponseArrayPresenter.php renamed to backend/app/Http/Presenter/AuthenticationResponseArrayPresenter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
declare(strict_types = 1);
44

5-
namespace App\Http\Presenter\Auth;
5+
namespace App\Http\Presenter;
66

77
use App\Action\Auth\AuthenticationResponse;
88

0 commit comments

Comments
 (0)