Skip to content

Commit 1de0211

Browse files
scrubmxStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 79eb587 commit 1de0211

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Console/TinkerZeroCommand.php

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace Intonate\TinkerZero\Console;
44

5-
use Psy\Shell;
6-
use Psy\Configuration;
75
use Laravel\Tinker\ClassAliasAutoloader;
86
use Laravel\Tinker\Console\TinkerCommand;
7+
use Psy\Configuration;
8+
use Psy\Shell;
99

1010
class TinkerZeroCommand extends TinkerCommand
1111
{
@@ -38,7 +38,7 @@ public function handle()
3838
/**
3939
* @return \Psy\Configuration
4040
*/
41-
public function getConfig() : Configuration
41+
public function getConfig(): Configuration
4242
{
4343
$config = new Configuration(['updateCheck' => 'never']);
4444
$config->getPresenter()->addCasters($this->getCasters());
@@ -49,7 +49,7 @@ public function getConfig() : Configuration
4949
/**
5050
* @return string
5151
*/
52-
protected function autoLoadClassMap() : string
52+
protected function autoLoadClassMap(): string
5353
{
5454
return $this->getLaravel()->basePath().'/vendor/composer/autoload_classmap.php';
5555
}

tests/TinkerZeroServiceProviderTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22

33
namespace Intonate\Tests;
44

5-
use Orchestra\Testbench\TestCase;
65
use Intonate\TinkerZero\Console\TinkerZeroCommand;
76
use Intonate\TinkerZero\TinkerZeroServiceProvider;
7+
use Orchestra\Testbench\TestCase;
88

99
class TinkerZeroServiceProviderTest extends TestCase
1010
{

0 commit comments

Comments
 (0)