1: <?php
2:
3: namespace RedBeanPHP;
4:
5: /**
6: * RedBean Plugin.
7: * Marker interface for plugins.
8: *
9: * @file RedBean/Plugin.php
10: * @author Gabor de Mooij and the RedBeanPHP Community
11: * @license BSD/GPLv2
12: *
13: * @copyright
14: * copyright (c) G.J.G.T. (Gabor) de Mooij and the RedBeanPHP Community
15: * This source file is subject to the BSD/GPLv2 License that is bundled
16: * with this source code in the file license.txt.
17: */
18: interface Plugin
19: {
20: }
21:
22: ;
23: