Updates
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 15:15:16 +08:00
parent 2763c771a8
commit e88f792e6d
9 changed files with 9 additions and 9 deletions

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet;
namespace mfmdevsystem\socket;
/**
* Wraps ConnectionInterface objects via the decorator pattern but allows

View File

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

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet;
namespace mfmdevsystem\socket;
/**
* This is the interface to build a Ratchet application with.

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet;
namespace mfmdevsystem\socket;
/**
* The version of Ratchet being used

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet;
namespace mfmdevsystem\socket;
interface MessageComponentInterface extends ComponentInterface, MessageInterface {
}

View File

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

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet;
namespace mfmdevsystem\socket;
abstract class AbstractMessageComponentTestCase extends \PHPUnit_Framework_TestCase {
protected $_app;

View File

@ -1,5 +1,5 @@
<?php
namespace Ratchet;
namespace mfmdevsystem\socket;
use mfmdevsystem\socket\ConnectionInterface;
use mfmdevsystem\socket\MessageComponentInterface;
use mfmdevsystem\socket\WebSocket\WsServerInterface;

View File

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