GeneralInterface.php 958 B

1234567891011121314151617181920212223242526272829303132333435
  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
  19. * @filename
  20. * @description
  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. interface GeneralInterface
  31. {
  32. public function initialize();
  33. }