Skip to content

Commit

Permalink
Fix octane
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenvanassche committed Apr 16, 2024
1 parent c875316 commit df2ea2a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/Ignition.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,11 @@ public static function make(): self
return new self();
}

public function __construct()
public function __construct(
?Flare $flare = null,
)
{
$this->flare = Flare::make();
$this->flare = $flare ?? Flare::make();

$this->ignitionConfig = IgnitionConfig::loadFromConfigFile();

Expand Down

0 comments on commit df2ea2a

Please sign in to comment.