9 lines
180 B
PHP
9 lines
180 B
PHP
<?php
|
|
|
|
namespace CachetHQ\Cachet\Models;
|
|
|
|
class WebHookResponse extends Eloquent {
|
|
public function hook() {
|
|
return $this->belongsTo('WebHook', 'id', 'hook_id');
|
|
}
|
|
} |