Cachet/app/models/WebHookResponse.php
Graham Campbell 9d8d89248f CS fixes
2014-12-20 21:20:17 +00:00

14 lines
282 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');
}
}