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