add Interface IValidation, implement validate stub in all Vertragsbestandteile and Gehaltsbestandteil and DV

This commit is contained in:
Harald Bamberger
2023-04-25 09:22:03 +02:00
parent b726f2ca5e
commit 2163ddcdf5
13 changed files with 175 additions and 13 deletions
@@ -0,0 +1,16 @@
<?php
namespace vertragsbestandteil;
/**
* Description of IValidation
*
* @author bambi
*/
interface IValidation
{
public function isValid();
public function getValidationErrors();
public function validate();
}