vendor/gos/web-socket-bundle/src/Pusher/Wamp/WampConnectionFactoryInterface.php line 7

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Gos\Bundle\WebSocketBundle\Pusher\Wamp;
  3. use Gos\Component\WebSocketClient\Wamp\ClientFactoryInterface;
  4. trigger_deprecation('gos/web-socket-bundle''3.1''The "%s" interface is deprecated and will be removed in 4.0, use "%s" instead.'WampConnectionFactoryInterface::class, ClientFactoryInterface::class);
  5. /**
  6.  * @deprecated to be removed in 4.0, use the Gos\Component\WebSocketClient\Wamp\ClientFactoryInterface from the gos/websocket-client package instead
  7.  */
  8. interface WampConnectionFactoryInterface extends ClientFactoryInterface
  9. {
  10. }