for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace PragmaRX\Firewall\Events;
use Illuminate\Contracts\Queue\ShouldQueue;
class AttackDetected implements ShouldQueue
{
/**
* @var
*/
public $record;
public $channel;
* Create a new event instance.
public function __construct($record, $channel)
$this->record = $record;
$this->channel = $channel;
}