vendor/gos/web-socket-bundle/src/Client/Driver/DriverInterface.php line 5

Open in your IDE?
  1. <?php declare(strict_types=1);
  2. namespace Gos\Bundle\WebSocketBundle\Client\Driver;
  3. trigger_deprecation('gos/web-socket-bundle''3.11''The "%s" interface is deprecated and will be removed in 4.0, use the new websocket authentication API instead.'DriverInterface::class);
  4. /**
  5.  * @deprecated to be removed in 4.0, use the new websocket authentication API instead
  6.  *
  7.  * @method void clear()
  8.  */
  9. interface DriverInterface
  10. {
  11.     /**
  12.      * @return mixed
  13.      */
  14.     public function fetch(string $id);
  15.     public function contains(string $id): bool;
  16.     /**
  17.      * @param mixed $data
  18.      */
  19.     public function save(string $id$dataint $lifeTime 0): bool;
  20.     public function delete(string $id): bool;
  21. }