aboutsummaryrefslogtreecommitdiffhomepage
path: root/assets/php/vendor/ratchet/rfc6455/src/Messaging/FrameInterface.php
diff options
context:
space:
mode:
Diffstat (limited to 'assets/php/vendor/ratchet/rfc6455/src/Messaging/FrameInterface.php')
-rwxr-xr-xassets/php/vendor/ratchet/rfc6455/src/Messaging/FrameInterface.php38
1 files changed, 0 insertions, 38 deletions
diff --git a/assets/php/vendor/ratchet/rfc6455/src/Messaging/FrameInterface.php b/assets/php/vendor/ratchet/rfc6455/src/Messaging/FrameInterface.php
deleted file mode 100755
index dc24091..0000000
--- a/assets/php/vendor/ratchet/rfc6455/src/Messaging/FrameInterface.php
+++ /dev/null
@@ -1,38 +0,0 @@
-<?php
-namespace Ratchet\RFC6455\Messaging;
-
-interface FrameInterface extends DataInterface {
- /**
- * Add incoming data to the frame from peer
- * @param string
- */
- function addBuffer($buf);
-
- /**
- * Is this the final frame in a fragmented message?
- * @return bool
- */
- function isFinal();
-
- /**
- * Is the payload masked?
- * @return bool
- */
- function isMasked();
-
- /**
- * @return int
- */
- function getOpcode();
-
- /**
- * @return int
- */
- //function getReceivedPayloadLength();
-
- /**
- * 32-big string
- * @return string
- */
- function getMaskingKey();
-}