mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-01-17 21:49:01 +01:00
76 lines
1.6 KiB
PHP
76 lines
1.6 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of Cachet.
|
|
*
|
|
* (c) Alt Three Services Limited
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace CachetHQ\Cachet\Bus\Events\IncidentUpdate;
|
|
|
|
use CachetHQ\Cachet\Bus\Events\ActionInterface;
|
|
use CachetHQ\Cachet\Models\IncidentUpdate;
|
|
use CachetHQ\Cachet\Models\User;
|
|
|
|
/**
|
|
* This is the incident update was reported event.
|
|
*
|
|
* @author James Brooks <james@alt-three.com>
|
|
*/
|
|
final class IncidentUpdateWasReportedEvent implements ActionInterface, IncidentUpdateEventInterface
|
|
{
|
|
/**
|
|
* The user who reported the incident update.
|
|
*
|
|
* @var \CachetHQ\Cachet\Models\User
|
|
*/
|
|
public $user;
|
|
|
|
/**
|
|
* The incident update that has been reported.
|
|
*
|
|
* @var \CachetHQ\Cachet\Models\IncidentUpdate
|
|
*/
|
|
public $update;
|
|
|
|
/**
|
|
* Create a new incident update was reported event instance.
|
|
*
|
|
* @param \CachetHQ\Cachet\Models\User $user
|
|
* @param \CachetHQ\Cachet\Models\IncidentUpdate $update
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(User $user, IncidentUpdate $update)
|
|
{
|
|
$this->user = $user;
|
|
$this->update = $update;
|
|
}
|
|
|
|
/**
|
|
* Get the event description.
|
|
*
|
|
* @return string
|
|
*/
|
|
public function __toString()
|
|
{
|
|
return 'Incident Update was reported.';
|
|
}
|
|
|
|
/**
|
|
* Get the event action.
|
|
*
|
|
* @return array
|
|
*/
|
|
public function getAction()
|
|
{
|
|
return [
|
|
'user' => $this->user,
|
|
'description' => (string) $this,
|
|
];
|
|
}
|
|
}
|