Concrete.php 781 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. <?php
  2. /**
  3. * @see Zend_Service_Ebay_Abstract
  4. */
  5. require_once 'Zend/Service/Ebay/Abstract.php';
  6. class Zend_Service_Ebay_AbstractConcrete extends Zend_Service_Ebay_Abstract
  7. {
  8. /**
  9. * Does nothing
  10. * Required by the Zend_Service_Ebay_Abstract
  11. *
  12. * @param mixed
  13. */
  14. public function setClient($client)
  15. {
  16. }
  17. /**
  18. * Does nothing
  19. * Required by the Zend_Service_Ebay_Abstract
  20. *
  21. * @return void
  22. */
  23. public function getClient()
  24. {
  25. }
  26. /**
  27. * Proxy to Zend_Service_Ebay_Abstract::_optionsToNameValueSyntax
  28. *
  29. * @param array|Zend_Config $options
  30. * @return array
  31. */
  32. public function optionsToNameValueSyntax($options)
  33. {
  34. return $this->_optionsToNameValueSyntax($options);
  35. }
  36. }