1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?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 Authx Components
- * @filename Identity
- * @description This file is used to set up the configurations for your authx database
- * @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
- *
- *
- */
- class General implements GeneralInterface
- {
- public function initialize()
- {
- return "Hello Container";
- }
- }
|