Get rid of unneeded injected dependency.

This commit is contained in:
Franz Liedke 2015-06-03 03:19:32 +02:00
parent ab18af34ff
commit 77aecaec9d
2 changed files with 0 additions and 26 deletions

View File

@ -1,7 +1,6 @@
<?php namespace Flarum\Console;
use Illuminate\Console\Command;
use Illuminate\Foundation\Application;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
@ -22,18 +21,6 @@ class InstallCommand extends Command
*/
protected $description = 'Run Flarum\'s installation migrations and seeds.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct(Application $app)
{
parent::__construct();
$this->app = $app;
}
/**
* Execute the console command.
*

View File

@ -1,7 +1,6 @@
<?php namespace Flarum\Console;
use Illuminate\Console\Command;
use Illuminate\Foundation\Application;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
@ -22,18 +21,6 @@ class SeedCommand extends Command
*/
protected $description = 'Seed Flarum\'s database with fake data.';
/**
* Create a new command instance.
*
* @return void
*/
public function __construct(Application $app)
{
parent::__construct();
$this->app = $app;
}
/**
* Execute the console command.
*