Small fix on validation model

This commit is contained in:
Mike Koch 2017-02-10 22:10:39 -05:00
parent d476f86c8c
commit 6f87dfc149

View File

@ -8,10 +8,13 @@ class ValidationModel {
*/
public $errorKeys;
/**
* @var bool
*/
public $valid;
function __construct() {
$errorKeys = [];
$valid = true;
$this->errorKeys = [];
$this->valid = true;
}
}