commit
This commit is contained in:
parent
882ae5363d
commit
c86a4c2319
|
|
@ -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;
|
||||||
|
|
@ -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;
|
||||||
|
|
@ -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;
|
||||||
|
|
@ -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;
|
||||||
|
|
@ -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()
|
||||||
{
|
{
|
||||||
|
|
@ -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()
|
||||||
{
|
{
|
||||||
|
|
@ -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)
|
||||||
{
|
{
|
||||||
|
|
@ -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()
|
||||||
{
|
{
|
||||||
Loading…
Reference in New Issue