Skip to content

Commit

Permalink
Add default values to config
Browse files Browse the repository at this point in the history
  • Loading branch information
gordalina committed Jan 3, 2023
1 parent 8e341f6 commit c2180b0
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion src/Console/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,19 @@ class Config implements \ArrayAccess
private $config = [
'adapter' => 'fastcgi',
'extensions' => ['apcu', 'opcache'],
'temp_dir' => null,

'fastcgi' => null,
'temp_dir' => null
'fastcgiChroot' => null,

'webClient' => null,
'webPath' => null,
'webUrl' => null,
'webAllowInsecure' => null,
'webBasicAuth' => null,
'webHost' => null,

'http' => null,
];

public function __construct(array $config = [])
Expand Down

0 comments on commit c2180b0

Please sign in to comment.