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

Commit

Permalink
fixed composer deprecation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
kohlerdominik committed Mar 16, 2020
1 parent 804e562 commit 586c1cc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
10 changes: 10 additions & 0 deletions src/Http/Controller.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php

namespace Lucid\Console\Http;

use Lucid\Console\Finder;

class Controller
{
use Finder;
}
8 changes: 2 additions & 6 deletions src/Http/routes.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

namespace Lucid\Console;

use Route;
use Illuminate\Support\Facades\Route;
use Lucid\Console\Http\Controller;

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

Expand Down Expand Up @@ -88,8 +89,3 @@
});

});

class Controller
{
use Finder;
}

0 comments on commit 586c1cc

Please sign in to comment.