1: <?php
2: /**
3: * PHP version 5
4: *
5: * @package generalDriver
6: * @author Christian Schiffler <c.schiffler@cyberspectrum.de>
7: * @author Stefan Heimes <stefan_heimes@hotmail.com>
8: * @author Tristan Lins <tristan.lins@bit3.de>
9: * @copyright The MetaModels team.
10: * @license LGPL.
11: * @filesource
12: */
13:
14: namespace DcGeneral\DataDefinition\Definition\View;
15:
16: /**
17: * Cut command - special interface for cutting an entry.
18: *
19: * This interface describes a command that can be used to cut a model.
20: *
21: * @package DcGeneral\DataDefinition\Definition\View
22: */
23: interface CutCommandInterface extends CommandInterface
24: {
25:
26: }
27: