mirror of
https://github.com/CachetHQ/Cachet.git
synced 2025-02-24 11:43:33 +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');
|
|
}
|
|
}
|