Skip to content

Commit

Permalink
Fix: namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
usermp committed May 26, 2024
1 parent 357c3e0 commit 6e20ed1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/Http/Controllers/ArtisanController.php
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?php

namespace Usermp\ArtisanApi\App\Http\Controllers;
namespace Usermp\ArtisanApi\app\Http\Controllers;

use Sentry\SentrySdk;
use Illuminate\Routing\Controller;
use Illuminate\Support\Facades\Artisan;
use Usermp\ArtisanApi\App\Http\Requests\ArtisanRequest;
use Usermp\ArtisanApi\app\Http\Requests\ArtisanRequest;

class ArtisanController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion src/app/Http/Middleware/CheckAuthToken.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Usermp\ArtisanApi\App\Http\Middleware;
namespace Usermp\ArtisanApi\app\Http\Middleware;

use Closure;
use Illuminate\Http\Request;
Expand Down

0 comments on commit 6e20ed1

Please sign in to comment.