From 59293ab38570a042d5a11c893fafb47127c7dcef Mon Sep 17 00:00:00 2001 From: Dariusz Czajkowski Date: Sat, 12 Sep 2020 21:07:03 +0200 Subject: [PATCH] Fixed the default formatting (#52) PHPStorm and PHPCSFixer by default indents the currently-unindented block --- src/Console/stubs/tests/Feature/Auth/LoginTest.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Console/stubs/tests/Feature/Auth/LoginTest.php b/src/Console/stubs/tests/Feature/Auth/LoginTest.php index 811223c..90e3581 100644 --- a/src/Console/stubs/tests/Feature/Auth/LoginTest.php +++ b/src/Console/stubs/tests/Feature/Auth/LoginTest.php @@ -172,11 +172,11 @@ public function testUserCannotMakeMoreThanFiveAttemptsInOneMinute() $this->getTooManyLoginAttemptsMessage(), collect( $response - ->baseResponse - ->getSession() - ->get('errors') - ->getBag('default') - ->get('email') + ->baseResponse + ->getSession() + ->get('errors') + ->getBag('default') + ->get('email') )->first() ); $this->assertTrue(session()->hasOldInput('email'));