1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- namespace Apps\Extensions;
- /**
- * Cygnite Framework
- *
- * An open source application development framework for PHP 5.3x or newer
- *
- * License
- *
- * This source file is subject to the MIT license that is bundled
- * with this package in the file LICENSE.txt.
- * http://www.cygniteframework.com/license.txt
- * If you did not receive a copy of the license and are unable to
- * obtain it through the world-wide-web, please send an email
- * to [email protected] so I can send you a copy immediately.
- *
- * @package Apps
- * @subpackages
- * @filename
- * @description
- * @author Sanjoy Dey
- * @copyright Copyright (c) 2013 - 2014,
- * @link http://www.cygniteframework.com
- * @since Version 1.0
- * @filesource
- * @warning Any changes in this library can cause abnormal behaviour of the framework
- *
- *
- */
- interface GeneralInterface
- {
- public function initialize();
- }
|