Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Dec 11, 2023
1 parent f35ef0d commit 2b0f7b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/realtime-compiler/bin/server.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
define('BASE_PATH', realpath(getcwd()));
define('HYDE_START', microtime(true));

require(getenv('HYDE_AUTOLOAD_PATH') ?: BASE_PATH.'/vendor/autoload.php');
require getenv('HYDE_AUTOLOAD_PATH') ?: BASE_PATH.'/vendor/autoload.php';

try {
$app = \Desilva\Microserve\Microserve::boot(\Hyde\RealtimeCompiler\Http\HttpKernel::class);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ trait InteractsWithLaravel

protected function createApplication(): void
{
$this->laravel = require (getenv('HYDE_BOOTSTRAP_PATH') ?: (BASE_PATH.'/app/bootstrap.php'));
$this->laravel = require getenv('HYDE_BOOTSTRAP_PATH') ?: (BASE_PATH.'/app/bootstrap.php');
}

protected function bootApplication(): void
Expand Down

0 comments on commit 2b0f7b8

Please sign in to comment.