18 lines
487 B
PHP
18 lines
487 B
PHP
<?php
|
|
/*
|
|
Author: Riccardo Di Dato
|
|
Creation Date: 08/gen/2016
|
|
*/
|
|
|
|
require_once(dirname(__FILE__)."/ConstraintException.php");
|
|
require_once(dirname(__FILE__)."/ConstrainedInterface.php");
|
|
require_once(dirname(__FILE__)."/ConstrainedFactory.php");
|
|
require_once(dirname(__FILE__)."/Constrained.php");
|
|
|
|
require_once(dirname(__FILE__)."/ConstrainedBehaviour.php");
|
|
|
|
|
|
require_once(dirname(__FILE__)."/ConstrainedObject.php");
|
|
require_once(dirname(__FILE__)."/ConstrainedArrayObject.php");
|
|
|
|
?>
|