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
-5
View File
@@ -11,7 +11,6 @@ class WebHook extends Eloquent {
/**
* Returns all responses for a WebHook.
*
* @return Illuminate\Database\Eloquent\Builder
*/
public function response() {
@@ -20,7 +19,6 @@ class WebHook extends Eloquent {
/**
* Returns all active hooks.
*
* @param Illuminate\Database\Eloquent\Builder $query
* @return Illuminate\Database\Eloquent\Builder
*/
@@ -30,7 +28,6 @@ class WebHook extends Eloquent {
/**
* Setups a Ping event that is fired upon a web hook.
*
* @return array result of the ping
*/
public function ping() {
@@ -39,7 +36,6 @@ class WebHook extends Eloquent {
/**
* Fires the actual web hook event.
*
* @param string $eventType the event to send X-Cachet-Event
* @param mixed $data Data to send to the Web Hook
* @return object
@@ -80,7 +76,6 @@ class WebHook extends Eloquent {
/**
* Returns a human readable request type name.
*
* @throws Exception
* @return string HEAD, GET, POST, DELETE, PATCH, PUT etc
*/