Skip to content

Commit

Permalink
fix Undefined index: force_compile (#73)
Browse files Browse the repository at this point in the history
  • Loading branch information
4n70w4 authored Mar 30, 2020
1 parent 2efabcd commit 670e86f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RayAspectKernel.php
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ protected function getCompiler(): Compiler
protected function makeCompileDir()
{
$this->makeDirectories(strval($this->configure['compile_dir']), 0775);
$this->forceCompile = (bool)$this->configure['force_compile'] ?? false;
$this->forceCompile = (bool)($this->configure['force_compile'] ?? false);
}

/**
Expand Down

0 comments on commit 670e86f

Please sign in to comment.