Skip to content

Commit

Permalink
Merge pull request #3 from norbybaru/fix-controller-nampespace
Browse files Browse the repository at this point in the history
Bug-fix: Use base Controller namespace to be the Illuminate nampespace
  • Loading branch information
joedixon authored Mar 28, 2019
2 parents 62d36e4 + 40999ed commit 463a9ed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Http/Controllers/LanguageController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Joedixon\NovaTranslation\Http\Controllers;

use App\Http\Controllers\Controller;
use Illuminate\Routing\Controller;
use JoeDixon\Translation\Drivers\Translation;
use JoeDixon\Translation\Http\Requests\LanguageRequest;

Expand Down
2 changes: 1 addition & 1 deletion src/Http/Controllers/LanguageTranslationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use Illuminate\Http\Request;
use Illuminate\Support\Collection;
use Illuminate\Pagination\Paginator;
use App\Http\Controllers\Controller;
use Illuminate\Routing\Controller;
use JoeDixon\Translation\Drivers\Translation;
use JoeDixon\Translation\Http\Requests\TranslationRequest;

Expand Down

0 comments on commit 463a9ed

Please sign in to comment.