Skip to content

Commit

Permalink
Merge pull request #46 from fondbot/analysis-86xWkM
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
vyuldashev committed Jun 30, 2017
2 parents bc26b2d + 496c09f commit 2f64840
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/Toolbelt/Commands/ServerRun.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
namespace FondBot\Toolbelt\Commands;

use FondBot\Toolbelt\Command;
use Symfony\Component\Process\ProcessUtils;
use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Process\PhpExecutableFinder;
use Symfony\Component\Process\ProcessUtils;

class ServerRun extends Command
{
Expand Down Expand Up @@ -61,5 +61,4 @@ public function handle(): void
$this->line("<info>Fondbot development server started:</info> <http://{$this->host()}:{$this->port()}>");
passthru($this->serverCommand());
}

}
4 changes: 2 additions & 2 deletions tests/Unit/Toolbelt/Commands/RunServerTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

declare(strict_types = 1);
declare(strict_types=1);

namespace FondBot\Tests\Unit\Toolbelt\Commands;

Expand All @@ -22,7 +22,7 @@ public function test(): void
$commandServer->shouldReceive('getName')->once()->andReturn('serve');
$commandServer->shouldReceive('getApplication')->once();
$commandServer->shouldReceive('run')->once();
$application = new Application;
$application = new Application;

$application->add($commandServer);

Expand Down

0 comments on commit 2f64840

Please sign in to comment.