CS fixes
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
<?php
|
||||
|
||||
class WebHookResponse extends Eloquent {
|
||||
/**
|
||||
* Returns the hook that a response belongs to.
|
||||
* @return Illuminate\Database\Eloquent\Relations\BelongsTo
|
||||
*/
|
||||
public function hook() {
|
||||
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');
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user