MathiasGrimm\LaravelLogKeeper\Repos\FakeRemoteLogsRepo::__construct PHP Метод

__construct() публичный Метод

public __construct ( array $config )
$config array
    public function __construct(array $config)
    {
        parent::__construct($config);
        if ($this->config['enabled_remote'] && !$this->config['remote_disk']) {
            throw new Exception("remote_disk not configured for Laravel Log Keeper");
        }
    }
FakeRemoteLogsRepo