major update
Some checks are pending
CI / PHPUnit (highest, 5.4) (push) Waiting to run
CI / PHPUnit (highest, 5.5) (push) Waiting to run
CI / PHPUnit (highest, 5.6) (push) Waiting to run
CI / PHPUnit (highest, 7.0) (push) Waiting to run
CI / PHPUnit (highest, 7.1) (push) Waiting to run
CI / PHPUnit (highest, 7.2) (push) Waiting to run
CI / PHPUnit (highest, 7.3) (push) Waiting to run
CI / PHPUnit (highest, 7.4) (push) Waiting to run
CI / PHPUnit (lowest, 5.4) (push) Waiting to run

This commit is contained in:
Mohamad Faeez 2025-04-09 14:56:59 +08:00
parent 11a39c8e46
commit 50725bbf4c
67 changed files with 169 additions and 169 deletions

View File

@ -33,8 +33,8 @@ Need help? Have a question? Want to provide feedback? Write a message on the
```php
<?php
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\ConnectionInterface;
// Make sure composer dependencies have been installed
require __DIR__ . '/vendor/autoload.php';

View File

@ -27,12 +27,12 @@
}
, "autoload": {
"psr-4": {
"Ratchet\\": "src/Ratchet"
"mfmdevsystem\\socket\\": "src/Socket"
}
}
, "require": {
"php": ">=8.4.0"
, "ratchet/rfc6455": "^0.3.1"
, "mfmdevsystem/rfc6455": "dev-master"
, "react/socket": "^1.0 || ^0.8 || ^0.7 || ^0.6 || ^0.5"
, "react/event-loop": ">=0.4"
, "guzzlehttp/psr7": "^1.7|^2.0"

View File

@ -1,8 +0,0 @@
<?php
namespace Ratchet\WebSocket;
use Ratchet\ConnectionInterface;
use Ratchet\RFC6455\Messaging\MessageInterface;
interface MessageCallableInterface {
public function onMessage(ConnectionInterface $conn, MessageInterface $msg);
}

View File

@ -4,16 +4,16 @@ use React\EventLoop\LoopInterface;
use React\EventLoop\Factory as LoopFactory;
use React\Socket\Server as Reactor;
use React\Socket\SecureServer as SecureReactor;
use Ratchet\Http\HttpServerInterface;
use Ratchet\Http\OriginCheck;
use Ratchet\Wamp\WampServerInterface;
use Ratchet\Server\IoServer;
use Ratchet\Server\FlashPolicy;
use Ratchet\Http\HttpServer;
use Ratchet\Http\Router;
use Ratchet\WebSocket\MessageComponentInterface as WsMessageComponentInterface;
use Ratchet\WebSocket\WsServer;
use Ratchet\Wamp\WampServer;
use mfmdevsystem\socket\Http\HttpServerInterface;
use mfmdevsystem\socket\Http\OriginCheck;
use mfmdevsystem\socket\Wamp\WampServerInterface;
use mfmdevsystem\socket\Server\IoServer;
use mfmdevsystem\socket\Server\FlashPolicy;
use mfmdevsystem\socket\Http\HttpServer;
use mfmdevsystem\socket\Http\Router;
use mfmdevsystem\socket\WebSocket\MessageComponentInterface as WsMessageComponentInterface;
use mfmdevsystem\socket\WebSocket\WsServer;
use mfmdevsystem\socket\Wamp\WampServer;
use Symfony\Component\Routing\RouteCollection;
use Symfony\Component\Routing\Route;
use Symfony\Component\Routing\RequestContext;

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Http;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Http;
use mfmdevsystem\socket\ConnectionInterface;
use GuzzleHttp\Psr7\Message;
use GuzzleHttp\Psr7\Response;

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Http;
use Ratchet\MessageInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Http;
use mfmdevsystem\socket\MessageInterface;
use mfmdevsystem\socket\ConnectionInterface;
use GuzzleHttp\Psr7\Message;
/**

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Http;
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Http;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\ConnectionInterface;
class HttpServer implements MessageComponentInterface {
use CloseResponseTrait;

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Http;
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Http;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\ConnectionInterface;
use Psr\Http\Message\RequestInterface;
interface HttpServerInterface extends MessageComponentInterface {

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Http;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Http;
use mfmdevsystem\socket\ConnectionInterface;
use Psr\Http\Message\RequestInterface;
class NoOpHttpServerController implements HttpServerInterface {

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Http;
use Ratchet\ConnectionInterface;
use Ratchet\MessageComponentInterface;
namespace mfmdevsystem\socket\Http;
use mfmdevsystem\socket\ConnectionInterface;
use mfmdevsystem\socket\MessageComponentInterface;
use Psr\Http\Message\RequestInterface;
/**

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Http;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Http;
use mfmdevsystem\socket\ConnectionInterface;
use Psr\Http\Message\RequestInterface;
use Symfony\Component\Routing\Matcher\UrlMatcherInterface;
use Symfony\Component\Routing\Exception\MethodNotAllowedException;

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Server;
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Server;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\ConnectionInterface;
/**
* A simple Ratchet application that will reply to all messages with the message it received

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Server;
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Server;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\ConnectionInterface;
/**
* An app to go on a server stack to pass a policy file to a Flash socket

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Server;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Server;
use mfmdevsystem\socket\ConnectionInterface;
use React\Socket\ConnectionInterface as ReactConn;
/**

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Server;
use Ratchet\MessageComponentInterface;
namespace mfmdevsystem\socket\Server;
use mfmdevsystem\socket\MessageComponentInterface;
use React\EventLoop\LoopInterface;
use React\Socket\ServerInterface;
use React\EventLoop\Factory as LoopFactory;

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Server;
use Ratchet\MessageComponentInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Server;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\ConnectionInterface;
class IpBlackList implements MessageComponentInterface {
/**

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\Session\Serialize;
namespace mfmdevsystem\socket\Session\Serialize;
interface HandlerInterface {
/**

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\Session\Serialize;
namespace mfmdevsystem\socket\Session\Serialize;
class PhpBinaryHandler implements HandlerInterface {
/**

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\Session\Serialize;
namespace mfmdevsystem\socket\Session\Serialize;
class PhpHandler implements HandlerInterface {
/**

View File

@ -1,10 +1,10 @@
<?php
namespace Ratchet\Session;
use Ratchet\ConnectionInterface;
use Ratchet\Http\HttpServerInterface;
namespace mfmdevsystem\socket\Session;
use mfmdevsystem\socket\ConnectionInterface;
use mfmdevsystem\socket\Http\HttpServerInterface;
use Psr\Http\Message\RequestInterface;
use Ratchet\Session\Storage\VirtualSessionStorage;
use Ratchet\Session\Serialize\HandlerInterface;
use mfmdevsystem\socket\Session\Storage\VirtualSessionStorage;
use mfmdevsystem\socket\Session\Serialize\HandlerInterface;
use Symfony\Component\HttpFoundation\Session\Session;
use Symfony\Component\HttpFoundation\Session\Storage\Handler\NullSessionHandler;

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\Session\Storage\Proxy;
namespace mfmdevsystem\socket\Session\Storage\Proxy;
use Symfony\Component\HttpFoundation\Session\Storage\Proxy\SessionHandlerProxy;
class VirtualProxy extends SessionHandlerProxy {

View File

@ -1,8 +1,8 @@
<?php
namespace Ratchet\Session\Storage;
namespace mfmdevsystem\socket\Session\Storage;
use Symfony\Component\HttpFoundation\Session\Storage\NativeSessionStorage;
use Ratchet\Session\Storage\Proxy\VirtualProxy;
use Ratchet\Session\Serialize\HandlerInterface;
use mfmdevsystem\socket\Session\Storage\Proxy\VirtualProxy;
use mfmdevsystem\socket\Session\Serialize\HandlerInterface;
class VirtualSessionStorage extends NativeSessionStorage {
/**

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\Wamp;
namespace mfmdevsystem\socket\Wamp;
class Exception extends \Exception {
}

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\Wamp;
namespace mfmdevsystem\socket\Wamp;
class JsonException extends Exception {
public function __construct() {

View File

@ -1,8 +1,8 @@
<?php
namespace Ratchet\Wamp;
use Ratchet\MessageComponentInterface;
use Ratchet\WebSocket\WsServerInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Wamp;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\WebSocket\WsServerInterface;
use mfmdevsystem\socket\ConnectionInterface;
/**
* WebSocket Application Messaging Protocol

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Wamp;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Wamp;
use mfmdevsystem\socket\ConnectionInterface;
/**
* A topic/channel containing connections that have subscribed to it

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Wamp;
use Ratchet\ConnectionInterface;
use Ratchet\WebSocket\WsServerInterface;
namespace mfmdevsystem\socket\Wamp;
use mfmdevsystem\socket\ConnectionInterface;
use mfmdevsystem\socket\WebSocket\WsServerInterface;
class TopicManager implements WsServerInterface, WampServerInterface {
/**

View File

@ -1,8 +1,8 @@
<?php
namespace Ratchet\Wamp;
use Ratchet\ConnectionInterface;
use Ratchet\AbstractConnectionDecorator;
use Ratchet\Wamp\ServerProtocol as WAMP;
namespace mfmdevsystem\socket\Wamp;
use mfmdevsystem\socket\ConnectionInterface;
use mfmdevsystem\socket\AbstractConnectionDecorator;
use mfmdevsystem\socket\Wamp\ServerProtocol as WAMP;
/**
* A ConnectionInterface object wrapper that is passed to your WAMP application

View File

@ -1,8 +1,8 @@
<?php
namespace Ratchet\Wamp;
use Ratchet\MessageComponentInterface;
use Ratchet\WebSocket\WsServerInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Wamp;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\WebSocket\WsServerInterface;
use mfmdevsystem\socket\ConnectionInterface;
/**
* Enable support for the official WAMP sub-protocol in your application

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Wamp;
use Ratchet\ComponentInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Wamp;
use mfmdevsystem\socket\ComponentInterface;
use mfmdevsystem\socket\ConnectionInterface;
/**
* An extension of Ratchet\ComponentInterface to server a WAMP application

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\WebSocket;
use Ratchet\RFC6455\Messaging\MessageBuffer;
namespace mfmdevsystem\socket\WebSocket;
use mfmdevsystem\RFC6455\Messaging\MessageBuffer;
class ConnContext {
/**
@ -9,7 +9,7 @@ class ConnContext {
public $connection;
/**
* @var \Ratchet\RFC6455\Messaging\MessageBuffer;
* @var \mfmdevsystem\RFC6455\Messaging\MessageBuffer;
*/
public $buffer;

View File

@ -0,0 +1,8 @@
<?php
namespace mfmdevsystem\socket\WebSocket;
use mfmdevsystem\socket\ConnectionInterface;
use mfmdevsystem\RFC6455\Messaging\MessageInterface;
interface MessageCallableInterface {
public function onMessage(ConnectionInterface $conn, MessageInterface $msg);
}

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\WebSocket;
use Ratchet\ComponentInterface;
namespace mfmdevsystem\socket\WebSocket;
use mfmdevsystem\socket\ComponentInterface;
interface MessageComponentInterface extends ComponentInterface, MessageCallableInterface {
}

View File

@ -1,8 +1,8 @@
<?php
namespace Ratchet\WebSocket;
use Ratchet\AbstractConnectionDecorator;
use Ratchet\RFC6455\Messaging\DataInterface;
use Ratchet\RFC6455\Messaging\Frame;
namespace mfmdevsystem\socket\WebSocket;
use mfmdevsystem\socket\AbstractConnectionDecorator;
use mfmdevsystem\RFC6455\Messaging\DataInterface;
use mfmdevsystem\RFC6455\Messaging\Frame;
/**
* {@inheritdoc}
@ -25,7 +25,7 @@ class WsConnection extends AbstractConnectionDecorator {
}
/**
* @param int|\Ratchet\RFC6455\Messaging\DataInterface
* @param int|\mfmdevsystem\RFC6455\Messaging\DataInterface
*/
public function close($code = 1000) {
if ($this->WebSocket->closing) {

View File

@ -1,18 +1,18 @@
<?php
namespace Ratchet\WebSocket;
use Ratchet\ComponentInterface;
use Ratchet\ConnectionInterface;
use Ratchet\MessageComponentInterface as DataComponentInterface;
use Ratchet\Http\HttpServerInterface;
use Ratchet\Http\CloseResponseTrait;
namespace mfmdevsystem\socket\WebSocket;
use mfmdevsystem\socket\ComponentInterface;
use mfmdevsystem\socket\ConnectionInterface;
use mfmdevsystem\socket\MessageComponentInterface as DataComponentInterface;
use mfmdevsystem\socket\Http\HttpServerInterface;
use mfmdevsystem\socket\Http\CloseResponseTrait;
use Psr\Http\Message\RequestInterface;
use Ratchet\RFC6455\Messaging\MessageInterface;
use Ratchet\RFC6455\Messaging\FrameInterface;
use Ratchet\RFC6455\Messaging\Frame;
use Ratchet\RFC6455\Messaging\MessageBuffer;
use Ratchet\RFC6455\Messaging\CloseFrameChecker;
use Ratchet\RFC6455\Handshake\ServerNegotiator;
use Ratchet\RFC6455\Handshake\RequestVerifier;
use mfmdevsystem\RFC6455\Messaging\MessageInterface;
use mfmdevsystem\RFC6455\Messaging\FrameInterface;
use mfmdevsystem\RFC6455\Messaging\Frame;
use mfmdevsystem\RFC6455\Messaging\MessageBuffer;
use mfmdevsystem\RFC6455\Messaging\CloseFrameChecker;
use mfmdevsystem\RFC6455\Handshake\ServerNegotiator;
use mfmdevsystem\RFC6455\Handshake\RequestVerifier;
use React\EventLoop\LoopInterface;
use GuzzleHttp\Psr7\Message;
@ -37,12 +37,12 @@ class WsServer implements HttpServerInterface {
protected $connections;
/**
* @var \Ratchet\RFC6455\Messaging\CloseFrameChecker
* @var \mfmdevsystem\RFC6455\Messaging\CloseFrameChecker
*/
private $closeFrameChecker;
/**
* @var \Ratchet\RFC6455\Handshake\ServerNegotiator
* @var \mfmdevsystem\RFC6455\Handshake\ServerNegotiator
*/
private $handshakeNegotiator;

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\WebSocket;
namespace mfmdevsystem\socket\WebSocket;
/**
* WebSocket Server Interface

View File

@ -1,10 +1,10 @@
<?php
use Ratchet\ConnectionInterface;
use mfmdevsystem\socket\ConnectionInterface;
require dirname(dirname(dirname(__DIR__))) . '/vendor/autoload.php';
class BinaryEcho implements \Ratchet\WebSocket\MessageComponentInterface {
public function onMessage(ConnectionInterface $from, \Ratchet\RFC6455\Messaging\MessageInterface $msg) {
public function onMessage(ConnectionInterface $from, \mfmdevsystem\RFC6455\Messaging\MessageInterface $msg) {
$from->send($msg);
}

View File

@ -1,8 +1,8 @@
<?php
namespace Ratchet\Mock;
use Ratchet\MessageComponentInterface;
use Ratchet\WebSocket\WsServerInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Mock;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\WebSocket\WsServerInterface;
use mfmdevsystem\socket\ConnectionInterface;
class Component implements MessageComponentInterface, WsServerInterface {
public $last = array();

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Mock;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Mock;
use mfmdevsystem\socket\ConnectionInterface;
class Connection implements ConnectionInterface {
public $last = array(

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Mock;
use Ratchet\AbstractConnectionDecorator;
namespace mfmdevsystem\socket\Mock;
use mfmdevsystem\socket\AbstractConnectionDecorator;
class ConnectionDecorator extends AbstractConnectionDecorator {
public $last = array(

View File

@ -1,8 +1,8 @@
<?php
namespace Ratchet\Mock;
use Ratchet\Wamp\WampServerInterface;
use Ratchet\WebSocket\WsServerInterface;
use Ratchet\ConnectionInterface;
namespace mfmdevsystem\socket\Mock;
use mfmdevsystem\socket\Wamp\WampServerInterface;
use mfmdevsystem\socket\WebSocket\WsServerInterface;
use mfmdevsystem\socket\ConnectionInterface;
class WampComponent implements WampServerInterface, WsServerInterface {
public $last = array();

View File

@ -1,9 +1,9 @@
<?php
namespace Ratchet;
use Ratchet\ConnectionInterface;
use Ratchet\MessageComponentInterface;
use Ratchet\WebSocket\WsServerInterface;
use Ratchet\Wamp\WampServerInterface;
use mfmdevsystem\socket\ConnectionInterface;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\WebSocket\WsServerInterface;
use mfmdevsystem\socket\Wamp\WampServerInterface;
class NullComponent implements MessageComponentInterface, WsServerInterface, WampServerInterface {
public function onOpen(ConnectionInterface $conn) {}

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Wamp\Stub;
use Ratchet\WebSocket\WsServerInterface;
use Ratchet\Wamp\WampServerInterface;
namespace mfmdevsystem\socket\Wamp\Stub;
use mfmdevsystem\socket\WebSocket\WsServerInterface;
use mfmdevsystem\socket\Wamp\WampServerInterface;
interface WsWampServerInterface extends WsServerInterface, WampServerInterface {
}

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\WebSocket\Stub;
use Ratchet\MessageComponentInterface;
use Ratchet\WebSocket\WsServerInterface;
namespace mfmdevsystem\socket\WebSocket\Stub;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\WebSocket\WsServerInterface;
interface WsMessageComponentInterface extends MessageComponentInterface, WsServerInterface {
}

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet;
use Ratchet\Mock\ConnectionDecorator;
use mfmdevsystem\socket\Mock\ConnectionDecorator;
/**
* @covers Ratchet\AbstractConnectionDecorator

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\Http;
namespace mfmdevsystem\socket\Http;
/**
* @covers Ratchet\Http\HttpRequestParser

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Http;
use Ratchet\AbstractMessageComponentTestCase;
namespace mfmdevsystem\socket\Http;
use mfmdevsystem\socket\AbstractMessageComponentTestCase;
/**
* @covers Ratchet\Http\HttpServer

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Http;
use Ratchet\AbstractMessageComponentTestCase;
namespace mfmdevsystem\socket\Http;
use mfmdevsystem\socket\AbstractMessageComponentTestCase;
/**
* @covers Ratchet\Http\OriginCheck

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Http;
use Ratchet\WebSocket\WsServerInterface;
namespace mfmdevsystem\socket\Http;
use mfmdevsystem\socket\WebSocket\WsServerInterface;
use Symfony\Component\Routing\Exception\ResourceNotFoundException;
use Symfony\Component\Routing\Matcher\UrlMatcherInterface;
use Symfony\Component\Routing\RequestContext;

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Server;
use Ratchet\Server\EchoServer;
namespace mfmdevsystem\socket\Server;
use mfmdevsystem\socket\Server\EchoServer;
class EchoServerTest extends \PHPUnit_Framework_TestCase {
protected $_conn;

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Application\Server;
use Ratchet\Server\FlashPolicy;
namespace mfmdevsystem\socket\Application\Server;
use mfmdevsystem\socket\Server\FlashPolicy;
/**
* @covers Ratchet\Server\FlashPolicy

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Application\Server;
use Ratchet\Server\IoConnection;
namespace mfmdevsystem\socket\Application\Server;
use mfmdevsystem\socket\Server\IoConnection;
/**
* @covers Ratchet\Server\IoConnection

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Server;
use Ratchet\Server\IoServer;
namespace mfmdevsystem\socket\Server;
use mfmdevsystem\socket\Server\IoServer;
use React\EventLoop\StreamSelectLoop;
use React\EventLoop\LoopInterface;
use React\Socket\Server;

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Server;
use Ratchet\Server\IpBlackList;
namespace mfmdevsystem\socket\Server;
use mfmdevsystem\socket\Server\IpBlackList;
/**
* @covers Ratchet\Server\IpBlackList

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Session\Serialize;
use Ratchet\Session\Serialize\PhpHandler;
namespace mfmdevsystem\socket\Session\Serialize;
use mfmdevsystem\socket\Session\Serialize\PhpHandler;
/**
* @covers Ratchet\Session\Serialize\PhpHandler

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Session;
use Ratchet\AbstractMessageComponentTestCase;
namespace mfmdevsystem\socket\Session;
use mfmdevsystem\socket\AbstractMessageComponentTestCase;
use Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler;
use Symfony\Component\HttpFoundation\Session\Storage\Handler\NullSessionHandler;

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Session\Storage;
use Ratchet\Session\Serialize\PhpHandler;
namespace mfmdevsystem\socket\Session\Storage;
use mfmdevsystem\socket\Session\Serialize\PhpHandler;
use Symfony\Component\HttpFoundation\Session\Attribute\AttributeBag;
use Symfony\Component\HttpFoundation\Session\Flash\FlashBag;
use Symfony\Component\HttpFoundation\Session\Storage\Handler\PdoSessionHandler;

View File

@ -1,7 +1,7 @@
<?php
namespace Ratchet\Wamp;
use Ratchet\Mock\Connection;
use Ratchet\Mock\WampComponent as TestComponent;
namespace mfmdevsystem\socket\Wamp;
use mfmdevsystem\socket\Mock\Connection;
use mfmdevsystem\socket\Mock\WampComponent as TestComponent;
/**
* @covers \Ratchet\Wamp\ServerProtocol

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\Wamp;
namespace mfmdevsystem\socket\Wamp;
/**
* @covers Ratchet\Wamp\TopicManager

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\Wamp;
namespace mfmdevsystem\socket\Wamp;
/**
* @covers Ratchet\Wamp\Topic

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet\Wamp;
namespace mfmdevsystem\socket\Wamp;
/**
* @covers Ratchet\Wamp\WampConnection

View File

@ -1,6 +1,6 @@
<?php
namespace Ratchet\Wamp;
use Ratchet\AbstractMessageComponentTestCase;
namespace mfmdevsystem\socket\Wamp;
use mfmdevsystem\socket\AbstractMessageComponentTestCase;
/**
* @covers Ratchet\Wamp\WampServer