Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrooksuk authored and StyleCIBot committed Feb 19, 2019
1 parent 5157e67 commit c6bb329
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
5 changes: 3 additions & 2 deletions app/Http/Middleware/CacheControl.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ class CacheControl
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @param \Illuminate\Http\Request $request
* @param \Closure $next
*
* @return mixed
*/
public function handle(Request $request, Closure $next)
Expand Down
8 changes: 4 additions & 4 deletions tests/Api/GeneralTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ public function test_can_get_system_status()
->assertJsonFragment([
'data' => [
'status' => 'success',
'message' => 'System operational'
]
'message' => 'System operational',
],
]);
}

Expand All @@ -72,8 +72,8 @@ public function test_can_get_system_status_not_success()
->assertJsonFragment([
'data' => [
'status' => 'info',
'message' => 'The system is experiencing issues'
]
'message' => 'The system is experiencing issues',
],
]);
}
}

0 comments on commit c6bb329

Please sign in to comment.