19 lines
250 B
PHP
19 lines
250 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
class NewRequestEvent extends Event
|
|
{
|
|
public $log;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(array $log)
|
|
{
|
|
$this->log = $log;
|
|
}
|
|
}
|