Cachet/app/models/WebHookResponse.php
2014-12-20 20:40:48 +00:00

12 lines
266 B
PHP

<?php
class WebHookResponse extends Eloquent {
/**
* Returns the hook that a response belongs to.
* @return Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function hook() {
return $this->belongsTo('WebHook', 'id', 'hook_id');
}
}