Skip to content

Commit

Permalink
Apply automatic changes
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanzweifel authored and github-actions[bot] committed Jul 31, 2022
1 parent eccef01 commit 0e9ba3a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 1 addition & 2 deletions server.php
Expand Up @@ -15,8 +15,7 @@
// This file allows us to emulate Apache's "mod_rewrite" functionality from the
// built-in PHP web server. This provides a convenient way to test a Laravel
// application without having installed a "real" web server software here.
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri))
{
if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) {
return false;
}

Expand Down
3 changes: 2 additions & 1 deletion tests/Feature/ExampleTest.php
Expand Up @@ -11,7 +11,8 @@ class ExampleTest extends TestCase
*
* @return void
*/
public function test_example() {
public function test_example()
{
$response = $this->get('/');

$response->assertStatus(200);
Expand Down

0 comments on commit 0e9ba3a

Please sign in to comment.