for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Cocotte\Host;
use Cocotte\Environment\LazyEnvironmentValue;
class Mounts implements LazyEnvironmentValue
{
/**
* @var array
*/
private $value;
public function __construct(array $value)
$this->value = $value;
}
public function toArray(): array
return $this->value;