Skip to content

Commit

Permalink
make class extends proper class
Browse files Browse the repository at this point in the history
  • Loading branch information
MrSuddenJoy authored Jun 18, 2024
1 parent 04be941 commit 8dc5d24
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion app/Http/Controllers/Api/ForumsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
use Coyote\Repositories\Criteria\Forum\OnlyThoseWithAccess;
use Coyote\Services\Guest;
use Illuminate\Container\Container;
use Illuminate\Routing\Controller;
use \Coyote\Http\Controllers\Controller;
use Illuminate\Contracts\Auth\Factory as Auth;

class ForumsController extends Controller
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Api/HomeController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Coyote\Http\Controllers\Api;

use Illuminate\Routing\Controller;
use \Coyote\Http\Controllers\Controller;

class HomeController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Api/JobsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
use Coyote\Repositories\Criteria\Sort;
use Coyote\Services\Job\SubmitsJob;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Routing\Controller;
use \Coyote\Http\Controllers\Controller;
use Illuminate\Contracts\Auth\Factory as Auth;

class JobsController extends Controller
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Api/LoginController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Foundation\Auth\AuthenticatesUsers;
use Illuminate\Foundation\Validation\ValidatesRequests;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use \Coyote\Http\Controllers\Controller;

class LoginController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Api/MicroblogsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
use Coyote\Repositories\Contracts\MicroblogRepositoryInterface as MicroblogRepository;
use Coyote\Repositories\Criteria\EagerLoading;
use Coyote\Repositories\Criteria\Microblog\OrderById;
use Illuminate\Routing\Controller;
use \Coyote\Http\Controllers\Controller;

class MicroblogsController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Api/PermanentRedirectController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Coyote\Http\Controllers\Api;

use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use \Coyote\Http\Controllers\Controller;

class PermanentRedirectController extends Controller
{
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Api/PostsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
use Coyote\Repositories\Criteria\Sort;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use \Coyote\Http\Controllers\Controller;
use Illuminate\Contracts\Auth\Factory as Auth;

class PostsController extends Controller
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Api/TopicsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use \Coyote\Http\Controllers\Controller;
use Illuminate\Contracts\Auth\Factory as Auth;

class TopicsController extends Controller
Expand Down
2 changes: 1 addition & 1 deletion app/Http/Controllers/Job/AdController.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
use Coyote\Services\Skills\Predictions;
use Coyote\Tag;
use Illuminate\Http\Request;
use Illuminate\Routing\Controller;
use \Coyote\Http\Controllers\Controller;

class AdController extends Controller
{
Expand Down

0 comments on commit 8dc5d24

Please sign in to comment.