From 66c6460bab227cfdcea1574332938cd31cabf00e Mon Sep 17 00:00:00 2001 From: Graham Campbell Date: Sun, 6 Dec 2015 11:44:02 +0000 Subject: [PATCH] Finished off event interfaces --- .../Component/ComponentEventInterface.php | 19 +++++++++++++++++++ .../Component/ComponentWasAddedEvent.php | 2 +- .../Component/ComponentWasRemovedEvent.php | 2 +- .../Component/ComponentWasUpdatedEvent.php | 2 +- .../ComponentGroupEventInterface.php | 19 +++++++++++++++++++ .../ComponentGroupWasAddedEvent.php | 2 +- .../ComponentGroupWasRemovedEvent.php | 2 +- .../ComponentGroupWasUpdatedEvent.php | 2 +- app/Events/EventInterface.php | 17 +++++++++++++++++ .../Incident/IncidentEventInterface.php | 19 +++++++++++++++++++ .../Incident/IncidentWasRemovedEvent.php | 2 +- .../Incident/IncidentWasReportedEvent.php | 2 +- .../Incident/IncidentWasUpdatedEvent.php | 2 +- .../Incident/MaintenanceWasScheduledEvent.php | 2 +- app/Events/Invite/InviteEventInterface.php | 19 +++++++++++++++++++ app/Events/Invite/InviteWasClaimed.php | 2 +- app/Events/Metric/MetricEventInterface.php | 19 +++++++++++++++++++ .../Metric/MetricPointWasAddedEvent.php | 2 +- .../Metric/MetricPointWasRemovedEvent.php | 2 +- .../Metric/MetricPointWasUpdatedEvent.php | 2 +- app/Events/Metric/MetricWasAddedEvent.php | 2 +- app/Events/Metric/MetricWasRemovedEvent.php | 2 +- app/Events/Metric/MetricWasUpdatedEvent.php | 2 +- .../Subscriber/SubscriberEventInterface.php | 19 +++++++++++++++++++ .../SubscriberHasSubscribedEvent.php | 2 +- .../SubscriberHasUnsubscribedEvent.php | 2 +- .../Subscriber/SubscriberHasVerifiedEvent.php | 2 +- app/Events/User/UserEventInterface.php | 4 +++- 28 files changed, 154 insertions(+), 21 deletions(-) create mode 100644 app/Events/Component/ComponentEventInterface.php create mode 100644 app/Events/ComponentGroup/ComponentGroupEventInterface.php create mode 100644 app/Events/EventInterface.php create mode 100644 app/Events/Incident/IncidentEventInterface.php create mode 100644 app/Events/Invite/InviteEventInterface.php create mode 100644 app/Events/Metric/MetricEventInterface.php create mode 100644 app/Events/Subscriber/SubscriberEventInterface.php diff --git a/app/Events/Component/ComponentEventInterface.php b/app/Events/Component/ComponentEventInterface.php new file mode 100644 index 00000000..1bdf1e64 --- /dev/null +++ b/app/Events/Component/ComponentEventInterface.php @@ -0,0 +1,19 @@ +