Skip to content

Commit

Permalink
Use VoyagerCore as parent
Browse files Browse the repository at this point in the history
  • Loading branch information
rxcod9 committed Jan 17, 2023
1 parent 0c6f7bb commit 0e71de7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Http/Controllers/VoyagerBaseController.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

use Illuminate\Support\Facades\Auth;
use Joy\VoyagerApi\Http\Traits\CrudActions;
use TCG\Voyager\Http\Controllers\VoyagerBaseController as TCGVoyagerBaseController;
use Joy\VoyagerCore\Http\Controllers\VoyagerBaseController as BaseVoyagerBaseController;

/**
* @OA\Info(
Expand All @@ -25,7 +25,7 @@
* description="Another API Server"
* )
*/
class VoyagerBaseController extends TCGVoyagerBaseController
class VoyagerBaseController extends BaseVoyagerBaseController
{
use CrudActions;

Expand Down
4 changes: 2 additions & 2 deletions src/Http/Traits/CrudActions.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Session;
use Illuminate\Support\Facades\Storage;
use TCG\Voyager\Http\Controllers\ContentTypes\File;
use TCG\Voyager\Http\Controllers\ContentTypes\Relationship;
use Joy\VoyagerCore\Http\Controllers\ContentTypes\File;
use Joy\VoyagerCore\Http\Controllers\ContentTypes\Relationship;

trait CrudActions
{
Expand Down

0 comments on commit 0e71de7

Please sign in to comment.