This commit is contained in:
freek 2018-11-27 16:21:31 +01:00
parent 882ae5363d
commit c86a4c2319
8 changed files with 12 additions and 12 deletions

View File

@ -1,6 +1,6 @@
<?php <?php
namespace BeyondCode\LaravelWebSockets\WebSockets\Pusher\Channels; namespace BeyondCode\LaravelWebSockets\WebSockets\Channels;
use BeyondCode\LaravelWebSockets\Events\ChannelOccupied; use BeyondCode\LaravelWebSockets\Events\ChannelOccupied;
use BeyondCode\LaravelWebSockets\Events\ChannelVacated; use BeyondCode\LaravelWebSockets\Events\ChannelVacated;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace BeyondCode\LaravelWebSockets\WebSockets\Pusher\Channels; namespace BeyondCode\LaravelWebSockets\WebSockets\Channels;
use ReflectionClass; use ReflectionClass;
use Ratchet\ConnectionInterface; use Ratchet\ConnectionInterface;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace BeyondCode\LaravelWebSockets\WebSockets\Pusher\Channels; namespace BeyondCode\LaravelWebSockets\WebSockets\Channels;
use Ratchet\ConnectionInterface; use Ratchet\ConnectionInterface;
use stdClass; use stdClass;

View File

@ -1,6 +1,6 @@
<?php <?php
namespace BeyondCode\LaravelWebSockets\WebSockets\Pusher\Channels; namespace BeyondCode\LaravelWebSockets\WebSockets\Channels;
use Ratchet\ConnectionInterface; use Ratchet\ConnectionInterface;
use stdClass; use stdClass;

View File

@ -1,8 +1,8 @@
<?php <?php
namespace BeyondCode\LaravelWebSockets\WebSockets\Pusher\Exceptions; namespace BeyondCode\LaravelWebSockets\WebSockets\Exceptions;
class InvalidConnection extends PusherException class InvalidConnection extends WebSocketException
{ {
public function __construct() public function __construct()
{ {

View File

@ -1,8 +1,8 @@
<?php <?php
namespace BeyondCode\LaravelWebSockets\WebSockets\Pusher\Exceptions; namespace BeyondCode\LaravelWebSockets\WebSockets\Exceptions;
class InvalidSignature extends PusherException class InvalidSignature extends WebSocketException
{ {
public function __construct() public function __construct()
{ {

View File

@ -1,8 +1,8 @@
<?php <?php
namespace BeyondCode\LaravelWebSockets\WebSockets\Pusher\Exceptions; namespace BeyondCode\LaravelWebSockets\WebSockets\Exceptions;
class UnknownAppKey extends PusherException class UnknownAppKey extends WebSocketException
{ {
public function __construct(string $appKey) public function __construct(string $appKey)
{ {

View File

@ -1,10 +1,10 @@
<?php <?php
namespace BeyondCode\LaravelWebSockets\WebSockets\Pusher\Exceptions; namespace BeyondCode\LaravelWebSockets\WebSockets\Exceptions;
use Exception; use Exception;
class PusherException extends Exception class WebSocketException extends Exception
{ {
public function getPayload() public function getPayload()
{ {