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\Palette\Condition\Palette;
14:
15: use DcGeneral\Data\ModelInterface;
16: use DcGeneral\Data\PropertyValueBag;
17:
18: /**
19: * Condition for the default palette.
20: */
21: class DefaultPaletteCondition implements PaletteConditionInterface
22: {
23: /**
24: * {@inheritdoc}
25: */
26: public function getMatchCount(ModelInterface $model = null, PropertyValueBag $input = null)
27: {
28: return 0;
29: }
30:
31: /**
32: * {@inheritdoc}
33: */
34: public function __clone()
35: {
36: }
37: }
38: