From 723cf736b011e77ba6d5b4115f8d2e13458749b7 Mon Sep 17 00:00:00 2001 From: Joshua Anthony Date: Sun, 18 Mar 2018 01:34:12 -0500 Subject: [PATCH] updated to fit with style guide --- src/Illuminate/Foundation/Testing/Constraints/SeeInOrder.php | 5 ++--- src/Illuminate/Foundation/Testing/TestResponse.php | 2 +- tests/Foundation/Testing/Constraints/SeeInOrderTest.php | 1 - 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/src/Illuminate/Foundation/Testing/Constraints/SeeInOrder.php b/src/Illuminate/Foundation/Testing/Constraints/SeeInOrder.php index 701697e2bfe1..ca5e1d8aaa62 100644 --- a/src/Illuminate/Foundation/Testing/Constraints/SeeInOrder.php +++ b/src/Illuminate/Foundation/Testing/Constraints/SeeInOrder.php @@ -2,21 +2,20 @@ namespace Illuminate\Foundation\Testing\Constraints; -use Illuminate\Database\Connection; use PHPUnit\Framework\Constraint\Constraint; class SeeInOrder extends Constraint { /** * The value that failed. Used to display in the error message. - * + * * @var string */ protected $failedValue; /** * The string we want to check the content of. - * + * * @var */ protected $content; diff --git a/src/Illuminate/Foundation/Testing/TestResponse.php b/src/Illuminate/Foundation/Testing/TestResponse.php index a0d0f13f59f8..51cf2e21399d 100644 --- a/src/Illuminate/Foundation/Testing/TestResponse.php +++ b/src/Illuminate/Foundation/Testing/TestResponse.php @@ -8,8 +8,8 @@ use Illuminate\Support\Carbon; use Illuminate\Contracts\View\View; use Illuminate\Support\Traits\Macroable; -use Illuminate\Foundation\Testing\Constraints\SeeInOrder; use PHPUnit\Framework\Assert as PHPUnit; +use Illuminate\Foundation\Testing\Constraints\SeeInOrder; /** * @mixin \Illuminate\Http\Response diff --git a/tests/Foundation/Testing/Constraints/SeeInOrderTest.php b/tests/Foundation/Testing/Constraints/SeeInOrderTest.php index c985bd3cc98f..ae1a01b4b779 100644 --- a/tests/Foundation/Testing/Constraints/SeeInOrderTest.php +++ b/tests/Foundation/Testing/Constraints/SeeInOrderTest.php @@ -3,7 +3,6 @@ namespace Illuminate\Tests\Foundation\Constraints; use PHPUnit\Framework\TestCase; -use Illuminate\Foundation\Testing\Constraints\SeeInOrder; use Illuminate\Tests\Foundation\FoundationTestResponseTest; class SeeInOrderTest extends TestCase