Skip to content

Commit

Permalink
style: split assignment into two lines clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
jordanbrauer committed Jul 22, 2021
1 parent d217503 commit 863ddea
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Concerns/Testable.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 863ddea

Please sign in to comment.