1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-06 08:40:09 +01:00

Support isolated sites running PHP 7.4

This commit is contained in:
Matt Stauffer
2022-12-26 09:47:58 -05:00
parent 80498c0234
commit 976339f898
20 changed files with 26 additions and 19 deletions

View File

@@ -4,13 +4,17 @@
class Server
{
// Skip constructor promotion until we stop supporting PHP@7.4 isolation
public $config;
/**
* Create a new Server instance.
*
* @param array $config
*/
public function __construct(public array $config)
public function __construct(array $config)
{
$this->config = $config;
}
/**