Interface.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <?php
  2. /**
  3. * Zend Framework
  4. *
  5. * LICENSE
  6. *
  7. * This source file is subject to the new BSD license that is bundled
  8. * with this package in the file LICENSE.txt.
  9. * It is also available through the world-wide-web at this URL:
  10. * http://framework.zend.com/license/new-bsd
  11. * If you did not receive a copy of the license and are unable to
  12. * obtain it through the world-wide-web, please send an email
  13. * to license@zend.com so we can send you a copy immediately.
  14. *
  15. * @category Zend
  16. * @package Zend_Tool
  17. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  18. * @license http://framework.zend.com/license/new-bsd New BSD License
  19. * @version $Id$
  20. */
  21. /**
  22. * @category Zend
  23. * @package Zend_Tool
  24. * @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
  25. * @license http://framework.zend.com/license/new-bsd New BSD License
  26. */
  27. interface Zend_Tool_Framework_Manifest_Interface
  28. {
  29. /**
  30. * The following methods are completely optional, and any combination of them
  31. * can be used as part of a manifest. The manifest repository will process
  32. * the return values of these actions as specfied in the following method docblocks.
  33. *
  34. * Since these actions are
  35. *
  36. */
  37. /**
  38. * getMetadata()
  39. *
  40. * Should either return a single metadata object or an array
  41. * of metadata objects
  42. *
  43. * @return array|Zend_Tool_Framework_Manifest_Metadata
  44. **
  45. public function getMetadata();
  46. **/
  47. /**
  48. * getActions()
  49. *
  50. * Should either return a single action, or an array
  51. * of actions
  52. *
  53. * @return array|Zend_Tool_Framework_Action_Interface
  54. **
  55. public function getActions();
  56. **/
  57. /**
  58. * getProviders()
  59. *
  60. * Should either return a single provider or an array
  61. * of providers
  62. *
  63. **
  64. public function getProviders();
  65. **/
  66. }