-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
134 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
[ | ||
{ | ||
"title": "Events", | ||
"slug": "events", | ||
"items": [ | ||
{ | ||
"title": "Account Opened", | ||
"slug": "account-opened", | ||
"path": "src/Events/AccountOpened.php" | ||
}, | ||
{ | ||
"title": "Money Deposited", | ||
"slug": "money-deposited", | ||
"path": "src/Events/MoneyDeposited.php" | ||
}, | ||
{ | ||
"title": "Money Withdrawn", | ||
"slug": "money-withdrawn", | ||
"path": "src/Events/MoneyWithdrawn.php" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "State", | ||
"slug": "state", | ||
"items": [ | ||
{ | ||
"title": "Account", | ||
"slug": "account", | ||
"path": "src/States/AccountState.php" | ||
}, | ||
{ | ||
"title": "User", | ||
"slug": "user", | ||
"path": "src/States/UserState.php" | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
[ | ||
{ | ||
"title": "Events", | ||
"slug": "events", | ||
"items": [ | ||
{ | ||
"title": "Increment", | ||
"slug": "increment", | ||
"path": "src/Events/IncrementCount.php" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "State", | ||
"slug": "state", | ||
"items": [ | ||
{ | ||
"title": "Count", | ||
"slug": "count", | ||
"path": "src/States/CountState.php" | ||
} | ||
] | ||
} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
[ | ||
{ | ||
"title": "Events", | ||
"slug": "events", | ||
"items": [ | ||
{ | ||
"title": "Subscription Started", | ||
"slug": "subscription-started", | ||
"path": "src/Events/SubscriptionStarted.php" | ||
}, | ||
{ | ||
"title": "Subscription Cancelled", | ||
"slug": "subscription-cancelled", | ||
"path": "src/Events/SubscriptionCancelled.php" | ||
}, | ||
{ | ||
"title": "Global Report Generated", | ||
"slug": "global-report-generated", | ||
"path": "src/Events/GlobalReportGenerated.php" | ||
}, | ||
{ | ||
"title": "Plan Report Generated", | ||
"slug": "plan-report-generated", | ||
"path": "src/Events/PlanReportGenerated.php" | ||
}, | ||
{ | ||
"title": "Reset Global Report State", | ||
"slug": "reset-global-report-state", | ||
"path": "src/Events/ResetGlobalReportState.php" | ||
}, | ||
{ | ||
"title": "Reset Plan Report State", | ||
"slug": "reset-plan-report-state", | ||
"path": "src/Events/ResetPlanReportState.php" | ||
} | ||
] | ||
}, | ||
{ | ||
"title": "State", | ||
"slug": "state", | ||
"items": [ | ||
{ | ||
"title": "Subscription", | ||
"slug": "subscription", | ||
"path": "src/States/SubscriptionState.php" | ||
}, | ||
{ | ||
"title": "Plan Report", | ||
"slug": "plan-report", | ||
"path": "src/States/PlanReportState.php" | ||
}, | ||
{ | ||
"title": "Global Report", | ||
"slug": "global-report", | ||
"path": "src/States/GlobalReportState.php" | ||
} | ||
] | ||
} | ||
] |