1
0
mirror of https://github.com/flarum/core.git synced 2025-10-11 23:14:29 +02:00

Applied fixes from StyleCI

This commit is contained in:
Toby Zerner
2016-02-25 22:09:39 -05:00
committed by StyleCI Bot
parent 83c22d73a4
commit a6cf10f854
96 changed files with 240 additions and 245 deletions

View File

@@ -12,10 +12,6 @@ namespace Flarum\Update\Console;
use Flarum\Console\Command\AbstractCommand;
use Illuminate\Contracts\Container\Container;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Output\OutputInterface;
class MigrateCommand extends AbstractCommand
{
@@ -41,7 +37,7 @@ class MigrateCommand extends AbstractCommand
{
$this
->setName('migrate')
->setDescription("Run outstanding migrations.");
->setDescription('Run outstanding migrations.');
}
/**

View File

@@ -11,8 +11,8 @@
namespace Flarum\Update\Controller;
use Flarum\Http\Controller\AbstractHtmlController;
use Psr\Http\Message\ServerRequestInterface as Request;
use Illuminate\Contracts\View\Factory;
use Psr\Http\Message\ServerRequestInterface as Request;
class IndexController extends AbstractHtmlController
{