aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/cboden/ratchet/src/Ratchet/ConnectionInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'assets/php/vendor/cboden/ratchet/src/Ratchet/ConnectionInterface.php')
-rwxr-xr-xassets/php/vendor/cboden/ratchet/src/Ratchet/ConnectionInterface.php26
1 files changed, 0 insertions, 26 deletions
diff --git a/assets/php/vendor/cboden/ratchet/src/Ratchet/ConnectionInterface.php b/assets/php/vendor/cboden/ratchet/src/Ratchet/ConnectionInterface.php
deleted file mode 100755
index 26fb8a4..0000000
--- a/assets/php/vendor/cboden/ratchet/src/Ratchet/ConnectionInterface.php
+++ /dev/null
@@ -1,26 +0,0 @@
-<?php
-namespace Ratchet;
-
-/**
- * The version of Ratchet being used
- * @var string
- */
-const VERSION = 'Ratchet/0.4.1';
-
-/**
- * A proxy object representing a connection to the application
- * This acts as a container to store data (in memory) about the connection
- */
-interface ConnectionInterface {
- /**
- * Send data to the connection
- * @param string $data
- * @return \Ratchet\ConnectionInterface
- */
- function send($data);
-
- /**
- * Close the connection
- */
- function close();
-}