|
12 | 12 | final class GitHubEvents
|
13 | 13 | {
|
14 | 14 | /** @Event('\App\Event\GitHubEvent') */
|
15 |
| - const COMMIT_COMMENT = 'github.commit_comment'; |
| 15 | + public const COMMIT_COMMENT = 'github.commit_comment'; |
16 | 16 |
|
17 | 17 | /** @Event('\App\Event\GitHubEvent') */
|
18 |
| - const CREATE = 'github.create'; |
| 18 | + public const CREATE = 'github.create'; |
19 | 19 |
|
20 | 20 | /** @Event('\App\Event\GitHubEvent') */
|
21 |
| - const DELETE = 'github.delete'; |
| 21 | + public const DELETE = 'github.delete'; |
22 | 22 |
|
23 | 23 | /** @Event('\App\Event\GitHubEvent') */
|
24 |
| - const DEPLOYMENT = 'github.deployment'; |
| 24 | + public const DEPLOYMENT = 'github.deployment'; |
25 | 25 |
|
26 | 26 | /** @Event('\App\Event\GitHubEvent') */
|
27 |
| - const DEPLOYMENT_STATUS = 'github.deployment_status'; |
| 27 | + public const DEPLOYMENT_STATUS = 'github.deployment_status'; |
28 | 28 |
|
29 | 29 | /** @Event('\App\Event\GitHubEvent') */
|
30 |
| - const FORK = 'github.fork'; |
| 30 | + public const FORK = 'github.fork'; |
31 | 31 |
|
32 | 32 | /** @Event('\App\Event\GitHubEvent') */
|
33 |
| - const GOLLUM = 'github.gollum'; |
| 33 | + public const GOLLUM = 'github.gollum'; |
34 | 34 |
|
35 | 35 | /** @Event('\App\Event\GitHubEvent') */
|
36 |
| - const ISSUE_COMMENT = 'github.issue_comment'; |
| 36 | + public const ISSUE_COMMENT = 'github.issue_comment'; |
37 | 37 |
|
38 | 38 | /** @Event('\App\Event\GitHubEvent') */
|
39 |
| - const ISSUES = 'github.issues'; |
| 39 | + public const ISSUES = 'github.issues'; |
40 | 40 |
|
41 | 41 | /** @Event('\App\Event\GitHubEvent') */
|
42 |
| - const MEMBER = 'github.member'; |
| 42 | + public const MEMBER = 'github.member'; |
43 | 43 |
|
44 | 44 | /** @Event('\App\Event\GitHubEvent') */
|
45 |
| - const MEMBERSHIP = 'github.membership'; |
| 45 | + public const MEMBERSHIP = 'github.membership'; |
46 | 46 |
|
47 | 47 | /** @Event('\App\Event\GitHubEvent') */
|
48 |
| - const PAGE_BUILD = 'github.page_build'; |
| 48 | + public const PAGE_BUILD = 'github.page_build'; |
49 | 49 |
|
50 | 50 | /** @Event('\App\Event\GitHubEvent') */
|
51 |
| - const IS_PUBLIC = 'github.public'; |
| 51 | + public const IS_PUBLIC = 'github.public'; |
52 | 52 |
|
53 | 53 | /** @Event('\App\Event\GitHubEvent') */
|
54 |
| - const PR_REVIEW_COMMENT = 'github.pull_request_review_comment'; |
| 54 | + public const PR_REVIEW_COMMENT = 'github.pull_request_review_comment'; |
55 | 55 |
|
56 | 56 | /** @Event('\App\Event\GithubEvent') */
|
57 |
| - const PULL_REQUEST_REVIEW = 'github.pull_request_review'; |
| 57 | + public const PULL_REQUEST_REVIEW = 'github.pull_request_review'; |
58 | 58 |
|
59 | 59 | /** @Event('\App\Event\GitHubEvent') */
|
60 |
| - const PULL_REQUEST = 'github.pull_request'; |
| 60 | + public const PULL_REQUEST = 'github.pull_request'; |
61 | 61 |
|
62 | 62 | /** @Event('\App\Event\GitHubEvent') */
|
63 |
| - const PUSH = 'github.push'; |
| 63 | + public const PUSH = 'github.push'; |
64 | 64 |
|
65 | 65 | /** @Event('\App\Event\GitHubEvent') */
|
66 |
| - const REPOSITORY = 'github.repository'; |
| 66 | + public const REPOSITORY = 'github.repository'; |
67 | 67 |
|
68 | 68 | /** @Event('\App\Event\GitHubEvent') */
|
69 |
| - const RELEASE = 'github.release'; |
| 69 | + public const RELEASE = 'github.release'; |
70 | 70 |
|
71 | 71 | /** @Event('\App\Event\GitHubEvent') */
|
72 |
| - const STATUS = 'github.status'; |
| 72 | + public const STATUS = 'github.status'; |
73 | 73 |
|
74 | 74 | /** @Event('\App\Event\GitHubEvent') */
|
75 |
| - const TEAM_ADD = 'github.team_add'; |
| 75 | + public const TEAM_ADD = 'github.team_add'; |
76 | 76 |
|
77 | 77 | /** @Event('\App\Event\GitHubEvent') */
|
78 |
| - const WATCH = 'github.watch'; |
| 78 | + public const WATCH = 'github.watch'; |
79 | 79 | }
|
0 commit comments