Cachet/app/models/WebHook.php

8 lines
140 B
PHP
Raw Normal View History

<?php
class WebHook extends Eloquent {
public function response() {
return $this->hasMany('WebHookContent', 'hook_id', 'id');
}
}