MathiasGrimm\LaravelEnvValidator\EnvValidator::validate PHP Метод

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

public validate ( )
    public function validate()
    {
        if ($this->validator->fails()) {
            $messages = [];
            foreach ($this->validator->messages()->all("The :key variable is not defined or invalid") as $var => $message) {
                $messages[] = $message;
            }
            $msg = 'The .env file has some problems. Please check config/laravel-env-validator.php' . PHP_EOL . implode(PHP_EOL, $messages);
            throw new Exception($msg);
        }
    }