1: <?php
2: /**
3: * PHP version 5
4: * @package generalDriver
5: * @author Christian Schiffler <c.schiffler@cyberspectrum.de>
6: * @author Stefan Heimes <stefan_heimes@hotmail.com>
7: * @author Tristan Lins <tristan.lins@bit3.de>
8: * @copyright The MetaModels team.
9: * @license LGPL.
10: * @filesource
11: */
12:
13: namespace DcGeneral\DataDefinition;
14:
15: /**
16: * Interface of a condition.
17: *
18: * This interface functions as an aggregator interface to re-ensemble compatible implementations to be used in
19: * ConditionChainInterfaces etc.
20: *
21: * @package DcGeneral\DataDefinition
22: */
23: interface ConditionInterface
24: {
25: }
26: