Cachet/app/Events/IncidentHasReportedEvent.php

33 lines
632 B
PHP
Raw Normal View History

2015-05-24 16:33:03 -05:00
<?php
/*
* This file is part of Cachet.
*
2015-07-06 17:37:01 +01:00
* (c) Alt Three Services Limited
2015-05-24 16:33:03 -05:00
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace CachetHQ\Cachet\Events;
use CachetHQ\Cachet\Models\Incident;
class IncidentHasReportedEvent
{
/**
* The incident that has been reported.
*
* @var \CachetHQ\Cachet\Models\Incident
*/
public $incident;
/**
* Create a new incident has reported event instance.
*/
public function __construct(Incident $incident)
{
$this->incident = $incident;
}
}