|
| 1 | +<?php |
| 2 | + |
| 3 | +namespace AppBundle; |
| 4 | + |
| 5 | +/** |
| 6 | + * GitHubEvents. |
| 7 | + * |
| 8 | + * {@link https://developer.github.com/v3/activity/events/types/} |
| 9 | + * |
| 10 | + * @author Jules Pietri <jules@heahprod.com> |
| 11 | + */ |
| 12 | +final class GitHubEvents |
| 13 | +{ |
| 14 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 15 | + const COMMIT_COMMENT = 'github.commit_comment'; |
| 16 | + |
| 17 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 18 | + const CREATE = 'github.create'; |
| 19 | + |
| 20 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 21 | + const DELETE = 'github.delete'; |
| 22 | + |
| 23 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 24 | + const DEPLOYMENT = 'github.deployment'; |
| 25 | + |
| 26 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 27 | + const DEPLOYMENT_STATUS = 'github.deployment_status'; |
| 28 | + |
| 29 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 30 | + const FORK = 'github.fork'; |
| 31 | + |
| 32 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 33 | + const GOLLUM = 'github.gollum'; |
| 34 | + |
| 35 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 36 | + const ISSUE_COMMENT = 'github.issue_comment'; |
| 37 | + |
| 38 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 39 | + const ISSUES = 'github.issues'; |
| 40 | + |
| 41 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 42 | + const MEMBER = 'github.member'; |
| 43 | + |
| 44 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 45 | + const MEMBERSHIP = 'github.membership'; |
| 46 | + |
| 47 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 48 | + const PAGE_BUILD = 'github.page_build'; |
| 49 | + |
| 50 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 51 | + const IS_PUBLIC = 'github.public'; |
| 52 | + |
| 53 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 54 | + const PR_REVIEW_COMMENT = 'github.pull_request_review_comment'; |
| 55 | + |
| 56 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 57 | + const PULL_REQUEST = 'github.pull_request'; |
| 58 | + |
| 59 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 60 | + const PUSH = 'github.push'; |
| 61 | + |
| 62 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 63 | + const REPOSITORY = 'github.repository'; |
| 64 | + |
| 65 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 66 | + const RELEASE = 'github.release'; |
| 67 | + |
| 68 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 69 | + const STATUS = 'github.status'; |
| 70 | + |
| 71 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 72 | + const TEAM_ADD = 'github.team_add'; |
| 73 | + |
| 74 | + /** @Event('\AppBundle\Event\GitHubEvent') */ |
| 75 | + const WATCH = 'github.watch'; |
| 76 | +} |
0 commit comments