Skip to content

Commit

Permalink
Change namespace App\Http\Livewire to App\Livewire
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Nov 30, 2024
1 parent 1d9a5a3 commit bfe65ee
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/CommentController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use App\Models\Comment;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\App;
use App\Http\Livewire\EditCommentForm;
use App\Livewire\EditCommentForm;

class CommentController extends Controller
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Livewire;
namespace App\Livewire;

use App\Models\Post;
use App\Models\Comment;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Livewire;
namespace App\Livewire;

use App\Models\Comment;
use Livewire\Component;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Livewire;
namespace App\Livewire;

use App\Models\User;
use Livewire\Component;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Livewire;
namespace App\Livewire;

use Livewire\WithPagination;
use Livewire\Component;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace App\Http\Livewire;
namespace App\Livewire;

use App\Models\Tag;
use Livewire\Component;
Expand Down

0 comments on commit bfe65ee

Please sign in to comment.