Skip to content

Commit

Permalink
Merge pull request #78 from facade/analysis-z4AmMN
Browse files Browse the repository at this point in the history
Apply fixes from StyleCI
  • Loading branch information
freekmurze authored Sep 3, 2019
2 parents 0c7ffd5 + 80a5e2d commit 28b6e72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/IgnitionConfig.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,6 @@ public function toArray(): array

protected function mergeWithDefaultConfig(array $options = []): array
{
return array_merge(config('ignition') ? : include __DIR__.'/../config/ignition.php', $options);
return array_merge(config('ignition') ?: include __DIR__.'/../config/ignition.php', $options);
}
}

0 comments on commit 28b6e72

Please sign in to comment.