Skip to content

Commit

Permalink
Fix UserController namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
kimchanhyung98 committed Apr 2, 2024
1 parent 834119f commit 43f4a61
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/User/UserController.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace app\Http\Controllers\User;
namespace App\Http\Controllers\User;

use App\Http\Controllers\Controller;
use App\Http\Resources\Account\UserResource;
Expand Down
2 changes: 1 addition & 1 deletion routes/api.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
use App\Http\Controllers\Account\KakaoController;
use App\Http\Controllers\Account\SignInController;
use App\Http\Controllers\Account\SignUpController;
use App\Http\Controllers\Account\UserController;
use App\Http\Controllers\PostController;
use App\Http\Controllers\User\UserController;
use Illuminate\Support\Facades\Route;

/*
Expand Down

0 comments on commit 43f4a61

Please sign in to comment.