for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spatie\ServerMonitor\Events;
use Illuminate\Contracts\Queue\ShouldQueue;
use Spatie\ServerMonitor\Models\Check;
abstract class Event implements ShouldQueue
{
/** @var \Spatie\ServerMonitor\Check */
public $check;
public function __construct(Check $check)
$this->check = $check;
}