for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Coyote\Events;
use Illuminate\Queue\SerializesModels;
use Coyote\Topic;
class TopicDeleted
{
use SerializesModels;
Illuminate\Queue\SerializesModels
Coyote\Events\TopicDeleted
$id
$relations
$class
$connection
$keyBy
/**
* @var array
*/
public $topic;
* Create a new event instance.
*
* @param Topic $topic
public function __construct(Topic $topic)
$this->topic = $topic->toArray();
}