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
namespace BeyondCode\LaravelWebSockets\WebSockets\Pusher\Channels;
namespace BeyondCode\LaravelWebSockets\WebSockets\Channels;
use BeyondCode\LaravelWebSockets\Events\ChannelOccupied;
use BeyondCode\LaravelWebSockets\Events\ChannelVacated;

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -1,8 +1,8 @@
<?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)
{

View File

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