Files
cachet-docker/app/models/WebHookResponse.php
Graham Campbell 509f582539 CS fixes
2014-12-30 18:19:22 +00:00

15 lines
289 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');
}
}