Skip to content

Commit

Permalink
Fixes CS.
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Sep 10, 2019
1 parent bc8748e commit 9be19ee
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/Concerns/FileLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ trait FileLoader
{
/**
* Is installation file has been booted.
* @var boolean
*
* @var bool
*/
protected $installerFileHasBeenBooted = false;

Expand Down Expand Up @@ -45,7 +46,7 @@ public function bootInstallerFilesForTesting(): void
protected function requireInstallerFiles(): void
{
if ($this->installerFileHasBeenBooted === true) {
return ;
return;
}

$paths = \config('orchestra/installer::installers.paths', []);
Expand Down
1 change: 0 additions & 1 deletion src/InstallerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ public function register()
$this->registerRedirection();
}


/**
* Get the events and handlers.
*
Expand Down

0 comments on commit 9be19ee

Please sign in to comment.