ProviderFullFeatured.php 860 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <?php
  2. require_once 'Zend/Tool/Framework/Provider/Abstract.php';
  3. class Zend_Tool_Framework_Provider_ProviderFullFeatured extends Zend_Tool_Framework_Provider_Abstract
  4. {
  5. protected $_specialties = array('Hi', 'BloodyMurder', 'ForYourTeam');
  6. public function getName()
  7. {
  8. return 'FooBarBaz';
  9. }
  10. public function say($what)
  11. {
  12. }
  13. public function scream($what = 'HELLO')
  14. {
  15. }
  16. public function sayHi()
  17. {
  18. }
  19. public function screamBloodyMurder()
  20. {
  21. }
  22. public function screamForYourTeam()
  23. {
  24. }
  25. protected function _iAmNotCallable()
  26. {
  27. }
  28. public function _testReturnInternals()
  29. {
  30. return array($this->_registry->getRequest(), $this->_registry->getResponse());
  31. }
  32. }