@@ -67,32 +67,32 @@ |
||
67 | 67 | $this->eventMap = array(); |
68 | 68 | |
69 | 69 | $events = array( |
70 | - 'commit_comment', |
|
71 | - 'create', |
|
72 | - 'delete', |
|
73 | - 'deployment', |
|
74 | - 'deployment_status', |
|
75 | - 'download', |
|
76 | - 'follow', |
|
77 | - 'fork', |
|
78 | - 'fork_apply', |
|
79 | - 'gist', |
|
80 | - 'gollum', |
|
81 | - 'issue_comment', |
|
82 | - 'issues', |
|
83 | - 'member', |
|
84 | - 'membership', |
|
85 | - 'page_build', |
|
86 | - 'public', |
|
87 | - 'ping', |
|
88 | - 'pull_request', |
|
89 | - 'pull_request_review_comment', |
|
90 | - 'push', |
|
91 | - 'release', |
|
92 | - 'repository', |
|
93 | - 'status', |
|
94 | - 'team_add', |
|
95 | - 'watch', |
|
70 | + 'commit_comment', |
|
71 | + 'create', |
|
72 | + 'delete', |
|
73 | + 'deployment', |
|
74 | + 'deployment_status', |
|
75 | + 'download', |
|
76 | + 'follow', |
|
77 | + 'fork', |
|
78 | + 'fork_apply', |
|
79 | + 'gist', |
|
80 | + 'gollum', |
|
81 | + 'issue_comment', |
|
82 | + 'issues', |
|
83 | + 'member', |
|
84 | + 'membership', |
|
85 | + 'page_build', |
|
86 | + 'public', |
|
87 | + 'ping', |
|
88 | + 'pull_request', |
|
89 | + 'pull_request_review_comment', |
|
90 | + 'push', |
|
91 | + 'release', |
|
92 | + 'repository', |
|
93 | + 'status', |
|
94 | + 'team_add', |
|
95 | + 'watch', |
|
96 | 96 | ); |
97 | 97 | |
98 | 98 | $namespace = '\\Smalot\\Github\\Webhook\\Event\\'; |
@@ -99,7 +99,7 @@ |
||
99 | 99 | |
100 | 100 | foreach ($events as $event) { |
101 | 101 | $className = str_replace(' ', '', ucwords(str_replace('_', ' ', $event))); |
102 | - $this->eventMap[$event] = $namespace.$className.'Event'; |
|
102 | + $this->eventMap[$event] = $namespace . $className . 'Event'; |
|
103 | 103 | } |
104 | 104 | } |
105 | 105 |