We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
| 1 | <?php |
||
| 14 | class WebsiteWasVisited |
||
| 15 | { |
||
| 16 | use Dispatchable, InteractsWithSockets, SerializesModels; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @var Request |
||
| 20 | */ |
||
| 21 | public $request; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Create a new event instance. |
||
| 25 | * |
||
| 26 | * @param Request $request |
||
| 27 | */ |
||
| 28 | public function __construct(Request $request) |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Get the channels the event should broadcast on. |
||
| 35 | * |
||
| 36 | * @return \Illuminate\Broadcasting\Channel|array |
||
| 37 | */ |
||
| 38 | public function broadcastOn() |
||
| 42 | } |
||
| 43 |