2
0

EmptyClient.php 550 B

123456789101112131415161718192021222324252627
  1. <?php
  2. require_once 'Zend/Tool/Framework/Client/Abstract.php';
  3. class Zend_Tool_Framework_EmptyClient
  4. extends Zend_Tool_Framework_Client_Abstract
  5. implements Zend_Tool_Framework_Registry_EnabledInterface
  6. {
  7. protected $_registry = null;
  8. public function getName()
  9. {
  10. return 'emptyClient';
  11. }
  12. protected function _predispatch()
  13. {
  14. return $this;
  15. }
  16. public function setRegistry(Zend_Tool_Framework_Registry_Interface $registry)
  17. {
  18. $this->_registry = $registry;
  19. }
  20. }