Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Commit 586c1cc

Browse files
committed
fixed composer deprecation warning
1 parent 804e562 commit 586c1cc

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

src/Http/Controller.php

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?php
2+
3+
namespace Lucid\Console\Http;
4+
5+
use Lucid\Console\Finder;
6+
7+
class Controller
8+
{
9+
use Finder;
10+
}

src/Http/routes.php

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

33
namespace Lucid\Console;
44

5-
use Route;
5+
use Illuminate\Support\Facades\Route;
6+
use Lucid\Console\Http\Controller;
67

78
Route::group(['prefix' => 'lucid'], function () {
89

@@ -88,8 +89,3 @@
8889
});
8990

9091
});
91-
92-
class Controller
93-
{
94-
use Finder;
95-
}

0 commit comments

Comments
 (0)