Skip to content

Commit

Permalink
Merge pull request #7 from intonate/analysis-rdYd49
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
scrubmx authored Mar 24, 2020
2 parents 79eb587 + 1de0211 commit 36ddf11
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/Console/TinkerZeroCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

namespace Intonate\TinkerZero\Console;

use Psy\Shell;
use Psy\Configuration;
use Laravel\Tinker\ClassAliasAutoloader;
use Laravel\Tinker\Console\TinkerCommand;
use Psy\Configuration;
use Psy\Shell;

class TinkerZeroCommand extends TinkerCommand
{
Expand Down Expand Up @@ -38,7 +38,7 @@ public function handle()
/**
* @return \Psy\Configuration
*/
public function getConfig() : Configuration
public function getConfig(): Configuration
{
$config = new Configuration(['updateCheck' => 'never']);
$config->getPresenter()->addCasters($this->getCasters());
Expand All @@ -49,7 +49,7 @@ public function getConfig() : Configuration
/**
* @return string
*/
protected function autoLoadClassMap() : string
protected function autoLoadClassMap(): string
{
return $this->getLaravel()->basePath().'/vendor/composer/autoload_classmap.php';
}
Expand Down
2 changes: 1 addition & 1 deletion tests/TinkerZeroServiceProviderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

namespace Intonate\Tests;

use Orchestra\Testbench\TestCase;
use Intonate\TinkerZero\Console\TinkerZeroCommand;
use Intonate\TinkerZero\TinkerZeroServiceProvider;
use Orchestra\Testbench\TestCase;

class TinkerZeroServiceProviderTest extends TestCase
{
Expand Down

0 comments on commit 36ddf11

Please sign in to comment.