*/ final class ComponentWasCreatedEvent implements ActionInterface, ComponentEventInterface { /** * The user who added the component. * * @var \CachetHQ\Cachet\Models\User */ public $user; /** * The component that was added. * * @var \CachetHQ\Cachet\Models\Component */ public $component; /** * Create a new component was added 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 added.'; } /** * Get the event action. * * @return array */ public function getAction() { return [ 'user' => $this->user, 'description' => (string) $this, ]; } }