db backup prior to drupal security update
[yaffs-website] / vendor / gabordemooij / redbean / RedBeanPHP / Plugin.php
1 <?php
2
3 namespace RedBeanPHP;
4
5 /**
6  * RedBean Plugin.
7  * Marker interface for plugins.
8  * Use this interface when defining new plugins, it's an
9  * easy way for the rest of the application to recognize your
10  * plugin. This plugin interface does not require you to
11  * implement a specific API.
12  *
13  * @file    RedBean/Plugin.php
14  * @author  Gabor de Mooij and the RedBeanPHP Community
15  * @license BSD/GPLv2
16  *
17  * @copyright
18  * copyright (c) G.J.G.T. (Gabor) de Mooij and the RedBeanPHP Community
19  * This source file is subject to the BSD/GPLv2 License that is bundled
20  * with this source code in the file license.txt.
21  */
22 interface Plugin
23 {
24 }
25
26 ;