PHPDoc and code formatting changes

This commit is contained in:
James Brooks
2014-12-20 20:40:48 +00:00
parent 3790ae240e
commit 5eab8093e7
10 changed files with 52 additions and 14 deletions
+4
View File
@@ -1,6 +1,10 @@
<?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');
}