Namespace refactor fixes

Updated old namespaces from refactor
This commit is contained in:
Chris Boden 2012-02-01 19:59:56 -05:00
parent e0fe5792a1
commit e26dc0ccde
7 changed files with 5 additions and 7 deletions

View File

@ -1,7 +1,7 @@
<?php <?php
namespace Ratchet\Component\WAMP\Command\Action; namespace Ratchet\Component\WAMP\Command\Action;
use Ratchet\Resource\Command\Action\SendMessage; use Ratchet\Resource\Command\Action\SendMessage;
use Ratchet\Component\WAMP\App as WAMP; use Ratchet\Component\WAMP\WAMPServerComponent as WAMP;
class CallError extends SendMessage { class CallError extends SendMessage {
protected $_id; protected $_id;

View File

@ -1,7 +1,7 @@
<?php <?php
namespace Ratchet\Component\WAMP\Command\Action; namespace Ratchet\Component\WAMP\Command\Action;
use Ratchet\Resource\Command\Action\SendMessage; use Ratchet\Resource\Command\Action\SendMessage;
use Ratchet\Component\WAMP\App as WAMP; use Ratchet\Component\WAMP\WAMPServerComponent as WAMP;
/** /**
*/ */

View File

@ -1,7 +1,7 @@
<?php <?php
namespace Ratchet\Component\WAMP\Command\Action; namespace Ratchet\Component\WAMP\Command\Action;
use Ratchet\Resource\Command\Action\SendMessage; use Ratchet\Resource\Command\Action\SendMessage;
use Ratchet\Component\WAMP\App as WAMP; use Ratchet\Component\WAMP\WAMPServerComponent as WAMP;
/** /**
* This is an event in the context of a topicURI * This is an event in the context of a topicURI

View File

@ -1,6 +1,5 @@
<?php <?php
namespace Ratchet\Component\WAMP; namespace Ratchet\Component\WAMP;
use Ratchet\Component\ComponentInterface;
use Ratchet\Component\WebSocket\WebSocketComponentInterface; use Ratchet\Component\WebSocket\WebSocketComponentInterface;
use Ratchet\Resource\ConnectionInterface; use Ratchet\Resource\ConnectionInterface;
use Ratchet\Resource\Command\Composite; use Ratchet\Resource\Command\Composite;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Ratchet\Component\WebSocket\Command\Action; namespace Ratchet\Component\WebSocket\Command\Action;
use Ratchet\Resource\Command\ActionTemplate; use Ratchet\Resource\Command\Action\ActionTemplate;
use Ratchet\Component\ComponentInterface; use Ratchet\Component\ComponentInterface;
/** /**

View File

@ -1,6 +1,6 @@
<?php <?php
namespace Ratchet\Component\WebSocket\Command\Action; namespace Ratchet\Component\WebSocket\Command\Action;
use Ratchet\Resource\Command\ActionTemplate; use Ratchet\Resource\Command\Action\ActionTemplate;
use Ratchet\Component\ComponentInterface; use Ratchet\Component\ComponentInterface;
/** /**

View File

@ -2,7 +2,6 @@
namespace Ratchet\Tests; namespace Ratchet\Tests;
use Ratchet\Tests\Mock\FakeSocket as Socket; use Ratchet\Tests\Mock\FakeSocket as Socket;
use Ratchet\Socket as RealSocket; use Ratchet\Socket as RealSocket;
use Ratchet\Tests\Mock\Application as TestApp;
/** /**
* @covers Ratchet\Socket * @covers Ratchet\Socket