Cachet/app/models/WebHookResponse.php

8 lines
146 B
PHP
Raw Normal View History

<?php
class WebHookResponse extends Eloquent {
public function hook() {
return $this->belongsTo('WebHook', 'id', 'hook_id');
}
}