D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
opt
/
psa
/
admin
/
plib
/
vendor
/
ratchet
/
rfc6455
/
src
/
Messaging
/
Filename :
MessageInterface.php
back
Copy
<?php namespace Ratchet\RFC6455\Messaging; interface MessageInterface extends DataInterface, \Traversable, \Countable { /** * @param FrameInterface $fragment * @return MessageInterface */ public function addFrame(FrameInterface $fragment): self; /** * @return int */ public function getOpcode(): int; /** * @return bool */ public function isBinary(): bool; }