Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
DarkaOnLine authored and StyleCIBot committed Aug 21, 2020
1 parent 1a81c47 commit fddbeed
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion src/Console/GenerateDocsCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace L5Swagger\Console;

use L5Swagger\Generator;
use Illuminate\Console\Command;
use L5Swagger\Generator;

class GenerateDocsCommand extends Command
{
Expand Down
2 changes: 1 addition & 1 deletion src/Http/Controllers/SwaggerAssetController.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
namespace L5Swagger\Http\Controllers;

use Illuminate\Http\Response;
use L5Swagger\Exceptions\L5SwaggerException;
use Illuminate\Routing\Controller as BaseController;
use L5Swagger\Exceptions\L5SwaggerException;

class SwaggerAssetController extends BaseController
{
Expand Down
4 changes: 2 additions & 2 deletions src/Http/Controllers/SwaggerController.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

namespace L5Swagger\Http\Controllers;

use L5Swagger\Generator;
use Illuminate\Routing\Controller as BaseController;
use Illuminate\Support\Facades\File;
use Illuminate\Support\Facades\Request;
use Illuminate\Support\Facades\Response;
use L5Swagger\Exceptions\L5SwaggerException;
use Illuminate\Routing\Controller as BaseController;
use L5Swagger\Generator;

class SwaggerController extends BaseController
{
Expand Down
2 changes: 1 addition & 1 deletion tests/GeneratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

namespace Tests;

use L5Swagger\Generator;
use L5Swagger\Exceptions\L5SwaggerException;
use L5Swagger\Generator;

class GeneratorTest extends TestCase
{
Expand Down
4 changes: 2 additions & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@

class TestCase extends OrchestraTestCase
{
public function setUp() :void
public function setUp(): void
{
parent::setUp();

$this->copyAssets();
}

public function tearDown() :void
public function tearDown(): void
{
if (file_exists($this->jsonDocsFile())) {
unlink($this->jsonDocsFile());
Expand Down

0 comments on commit fddbeed

Please sign in to comment.