From 863ddea50b5269a7b9b7e83067306169cb398b9b Mon Sep 17 00:00:00 2001 From: jordanbrauer <18744334+jordanbrauer@users.noreply.github.com> Date: Thu, 22 Jul 2021 17:54:22 -0500 Subject: [PATCH] style: split assignment into two lines clarity --- src/Concerns/Testable.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Concerns/Testable.php b/src/Concerns/Testable.php index 91b73d72d..d8137311e 100644 --- a/src/Concerns/Testable.php +++ b/src/Concerns/Testable.php @@ -73,7 +73,8 @@ public function __construct(Closure $test, string $description, array $data) { $this->__test = $test; $this->__description = $description; - self::$beforeAll = self::$afterAll = null; + self::$beforeAll = null; + self::$afterAll = null; parent::__construct('__test', $data); }