mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 19:53:00 +01:00
8 lines
140 B
PHP
8 lines
140 B
PHP
|
<?php
|
||
|
|
||
|
class WebHook extends Eloquent {
|
||
|
public function response() {
|
||
|
return $this->hasMany('WebHookContent', 'hook_id', 'id');
|
||
|
}
|
||
|
}
|