MockFactory.php 249 B

1234567891011121314
  1. <?php
  2. class Redis_Tests_Client_MockFactory implements Redis_Client_FactoryInterface
  3. {
  4. public function getClient($options = array())
  5. {
  6. return (object)$options;
  7. }
  8. public function getName()
  9. {
  10. return 'Mock';
  11. }
  12. }