style: split assignment into two lines clarity

This commit is contained in:
jordanbrauer
2021-07-22 17:54:22 -05:00
parent d217503a6a
commit 863ddea50b

View File

@ -73,7 +73,8 @@ trait Testable
{
$this->__test = $test;
$this->__description = $description;
self::$beforeAll = self::$afterAll = null;
self::$beforeAll = null;
self::$afterAll = null;
parent::__construct('__test', $data);
}