SocketFactory.php 331 B

1234567891011121314151617
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\CacheInvalidate\Model;
  7. class SocketFactory
  8. {
  9. /**
  10. * @return \Zend\Http\Client\Adapter\Socket
  11. */
  12. public function create()
  13. {
  14. return new \Zend\Http\Client\Adapter\Socket();
  15. }
  16. }