Receiving messages from matrix
This commit is contained in:
20
app/Events/Matrix/Unknown.php
Normal file
20
app/Events/Matrix/Unknown.php
Normal file
@@ -0,0 +1,20 @@
|
||||
<?php
|
||||
|
||||
namespace App\Events\Matrix;
|
||||
|
||||
use Illuminate\Support\Facades\Log;
|
||||
|
||||
/**
|
||||
* Catch all unknown events that we havent specifically programmed for.
|
||||
*
|
||||
* @package Slack\Event
|
||||
*/
|
||||
class Unknown extends Base
|
||||
{
|
||||
public function __construct(array $request)
|
||||
{
|
||||
Log::notice(sprintf('EMU:? UNKNOWN Event received [%s]',get_class($this)));
|
||||
|
||||
parent::__construct($request);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user