You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Mods-for-HESK-Netsyms/api/businesslogic/ValidationModel.php

15 lines
193 B
PHP

<?php
class ValidationModel {
/**
* @var array
*/
public $errorKeys;
public $valid;
function __construct() {
$errorKeys = [];
$valid = true;
}
}