Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
57 | public function loadEventData($name) |
||
58 | { |
||
59 | $file = dirname(__FILE__) . '/../webhooks/'.$this->version.'/'.$name.'.json'; |
||
60 | |||
61 | if (!file_exists($file)) { |
||
62 | throw new InvalidEventException("Event does not exist in version ".$this->version, 1); |
||
63 | } |
||
64 | |||
65 | return file_get_contents($file); |
||
66 | } |
||
67 | |||
92 |