We could not synchronize checks via GitHub's checks API since Scrutinizer's GitHub App is not installed for this repository.
@@ -39,7 +39,7 @@ |
||
| 39 | 39 | * |
| 40 | 40 | * These routes all receive session state, CSRF protection, etc. |
| 41 | 41 | */ |
| 42 | - /* |
|
| 42 | + /* |
|
| 43 | 43 | protected function mapWebRoutes() |
| 44 | 44 | { |
| 45 | 45 | Route::group( |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | [ |
| 65 | 65 | 'middleware' => 'api', |
| 66 | 66 | 'namespace' => $this->namespace, |
| 67 | - ], function ($router) { |
|
| 67 | + ], function($router) { |
|
| 68 | 68 | include base_path('routes/api.php'); |
| 69 | 69 | } |
| 70 | 70 | ); |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | |
| 33 | 33 | $campaign = new Campaign(); |
| 34 | 34 | $campaign->title = $request[ 'title' ]; |
| 35 | - $campaign->description = $request['description']; |
|
| 35 | + $campaign->description = $request[ 'description' ]; |
|
| 36 | 36 | $campaign->expires = $request[ 'expires' ]; |
| 37 | 37 | // $campaign->user_id = $request[ 'user_id' ]; |
| 38 | 38 | // use auth guard instead of $request['user_id']. |