* @author Graham Campbell */ final class ComponentWasUpdatedEvent implements ActionInterface, ComponentEventInterface { /** * The user who updated the component. * * @var \CachetHQ\Cachet\Models\User */ public $user; /** * The component that was updated. * * @var \CachetHQ\Cachet\Models\Component */ public $component; /** * Create a new component was updated event instance. * * @param \CachetHQ\Cachet\Models\User $user * @param \CachetHQ\Cachet\Models\Component $component * * @return void */ public function __construct(User $user, Component $component) { $this->user = $user; $this->component = $component; } /** * Get the event description. * * @return string */ public function __toString() { return 'Component was updated.'; } /** * Get the event action. * * @return array */ public function getAction() { return [ 'user' => $this->user, 'description' => (string) $this, ]; } }