for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace NotificationChannels\Zendesk\Events;
class ZendeskTicketWasCreated
{
public $ticket;
/**
* Create a new event instance.
*
* @param $ticket
*/
public function __construct($ticket)
$this->ticket = $ticket;
}