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;
14:
15: use DcGeneral\View\ViewInterface;
16:
17: /**
18: * Base interface providing access to a view.
19: *
20: * @package DcGeneral
21: */
22: interface ViewAwareInterface
23: {
24: /**
25: * Return the view.
26: *
27: * @return ViewInterface
28: */
29: public function getView();
30: }
31: