General.php 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. namespace Apps\Extensions;
  3. /**
  4. * Cygnite Framework
  5. *
  6. * An open source application development framework for PHP 5.3x or newer
  7. *
  8. * License
  9. *
  10. * This source file is subject to the MIT license that is bundled
  11. * with this package in the file LICENSE.txt.
  12. * http://www.cygniteframework.com/license.txt
  13. * If you did not receive a copy of the license and are unable to
  14. * obtain it through the world-wide-web, please send an email
  15. * to [email protected] so I can send you a copy immediately.
  16. *
  17. * @package Apps
  18. * @subpackages Authx Components
  19. * @filename Identity
  20. * @description This file is used to set up the configurations for your authx database
  21. * @author Sanjoy Dey
  22. * @copyright Copyright (c) 2013 - 2014,
  23. * @link http://www.cygniteframework.com
  24. * @since Version 1.0
  25. * @filesource
  26. * @warning Any changes in this library can cause abnormal behaviour of the framework
  27. *
  28. *
  29. */
  30. class General implements GeneralInterface
  31. {
  32. public function initialize()
  33. {
  34. return "Hello Container";
  35. }
  36. }