laravel-websockets/src/WebSocket/Pusher/Exceptions/InvalidSignature.php

13 lines
247 B
PHP
Raw Normal View History

2018-11-22 09:54:51 +00:00
<?php
2018-11-27 15:07:29 +00:00
namespace BeyondCode\LaravelWebSockets\WebSocket\Pusher\Exceptions;
2018-11-22 09:54:51 +00:00
2018-11-26 23:13:22 +00:00
class InvalidSignature extends PusherException
2018-11-22 09:54:51 +00:00
{
public function __construct()
{
$this->message = 'Invalid Signature';
2018-11-25 23:47:47 +00:00
2018-11-22 09:54:51 +00:00
$this->code = 4009;
}
}