Skip to content

Commit d1e116e

Browse files
committed
Replaced BaseController with Illuminate\Routing\Controller
1 parent 8931740 commit d1e116e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Console/stubs/page-controller.stub

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
namespace DummyNamespace;
44

5-
use Backpack\CRUD\app\Http\Controllers\BaseController;
5+
use Illuminate\Routing\Controller;
66

77
/**
88
* Class DummyClassController
99
* @package App\Http\Controllers\Admin
1010
* @property-read \Backpack\CRUD\app\Library\CrudPanel\CrudPanel $crud
1111
*/
12-
class DummyClassController extends BaseController
12+
class DummyClassController extends Controller
1313
{
1414
public function index()
1515
{

0 commit comments

Comments
 (0)