1
0
mirror of https://github.com/flarum/core.git synced 2025-08-03 06:57:54 +02:00

Improve installer validation

Very rough, but works for now. The basic premise being that we need to
collect all user data before we proceed with installation.
This commit is contained in:
Toby Zerner
2015-09-14 18:13:24 +09:30
parent 9bf485359a
commit cbcad27679
2 changed files with 43 additions and 21 deletions

View File

@@ -19,6 +19,8 @@ class ValidationException extends Exception implements JsonApiSerializable
public function __construct(array $messages)
{
$this->messages = $messages;
parent::__construct(implode("\n", $messages));
}
public function getMessages()