From 0e9ba3a0ef5397165183aad9da0a3ed87cdb1ba7 Mon Sep 17 00:00:00 2001 From: stefanzweifel Date: Sun, 31 Jul 2022 05:45:08 +0000 Subject: [PATCH] Apply automatic changes --- server.php | 3 +-- tests/Feature/ExampleTest.php | 3 ++- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/server.php b/server.php index 8c848a6..a5be485 100644 --- a/server.php +++ b/server.php @@ -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; } diff --git a/tests/Feature/ExampleTest.php b/tests/Feature/ExampleTest.php index c12315d..0894c60 100644 --- a/tests/Feature/ExampleTest.php +++ b/tests/Feature/ExampleTest.php @@ -11,7 +11,8 @@ class ExampleTest extends TestCase * * @return void */ - public function test_example() { + public function test_example() + { $response = $this->get('/'); $response->assertStatus(200);