Skip to content

Commit

Permalink
fix Controller name
Browse files Browse the repository at this point in the history
  • Loading branch information
AlirezaAlgo committed Mar 25, 2015
1 parent 3d1e175 commit 608c1f2
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 8 deletions.
4 changes: 3 additions & 1 deletion src/controllers/AuthController.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
<?php

namespace Serverfireteam\Panel;

use Illuminate\Support\Facades\Session as session;
use App\Http\Controllers\Controller;
use Illuminate\Routing\Controller;

class AuthController extends Controller {

/**
Expand Down
3 changes: 2 additions & 1 deletion src/controllers/CrudController.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
* and open the template in the editor.
*/

use Illuminate\Routing\Controller;

class CrudController extends \App\Http\Controllers\Controller
class CrudController extends Controller
{


Expand Down
2 changes: 1 addition & 1 deletion src/controllers/ExportImportController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace Serverfireteam\Panel;

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

class ExportImportController extends Controller {

Expand Down
3 changes: 2 additions & 1 deletion src/controllers/MainController.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
namespace Serverfireteam\Panel;

use \Serverfireteam\Panel\libs\PanelElements;
use Illuminate\Routing\Controller;

class MainController extends \App\Http\Controllers\Controller {
class MainController extends Controller {


public function entityUrl($entity, $methods){
Expand Down
2 changes: 1 addition & 1 deletion src/controllers/ProfileController.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
namespace Serverfireteam\Panel;

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

class ProfileController extends Controller {

Expand Down
2 changes: 1 addition & 1 deletion src/controllers/RemindersController.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?php
namespace Serverfireteam\Panel;

use \App\Http\Controllers\Controller;
use Illuminate\Contracts\Auth\PasswordBroker as PasswordBrokerContract;
use Illuminate\Routing\Controller;

/*******
* The RemindersControler handle the users Password reminding activities
Expand Down
4 changes: 2 additions & 2 deletions src/controllers/UsersController.php
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
<?php
namespace Serverfireteam\Panel;

use \Illuminate\Routing\Controllers;
use Illuminate\Routing\Controller;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/

class UsersController extends \Controller{
class UsersController extends Controller{


public function all($entity){
Expand Down

0 comments on commit 608c1f2

Please sign in to comment.