20 lines
264 B
PHP
Raw Normal View History

<?php
2017-02-01 22:04:52 -05:00
namespace BusinessLogic;
class ValidationModel {
/**
* @var array
*/
public $errorKeys;
2017-02-10 22:10:39 -05:00
/**
* @var bool
*/
public $valid;
function __construct() {
2017-02-10 22:10:39 -05:00
$this->errorKeys = [];
$this->valid = true;
}
}