From 782aced6741d6b5bd45e372a439326c4ba971da9 Mon Sep 17 00:00:00 2001 From: rubenvanassche Date: Wed, 7 Sep 2022 15:39:10 +0000 Subject: [PATCH] Fix styling --- tests/DataTest.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/DataTest.php b/tests/DataTest.php index 71c0ff2c..60abc6fb 100644 --- a/tests/DataTest.php +++ b/tests/DataTest.php @@ -2376,7 +2376,7 @@ public function it_will_throw_a_custom_exception_when_a_data_constructor_cannot_ /** @test */ public function it_can_inherit_properties_from_a_base_class() { - $dataClass = new class('') extends SimpleData{ + $dataClass = new class ('') extends SimpleData { public int $int; };