@@ -87,7 +87,7 @@ public function __construct(
87
87
/** @test */
88
88
public function it_can_include_a_nested_lazy_property ()
89
89
{
90
- $ data = new class (Lazy::create (fn () => LazyData::create ('Hello ' )), Lazy::create (fn () => LazyData::collection ([ 'is ' , 'it ' , 'me ' , 'your ' , 'looking ' , 'for ' , ])),) extends Data {
90
+ $ data = new class (Lazy::create (fn () => LazyData::create ('Hello ' )), Lazy::create (fn () => LazyData::collection ([ 'is ' , 'it ' , 'me ' , 'your ' , 'looking ' , 'for ' , ])), ) extends Data {
91
91
public function __construct (
92
92
public Lazy | LazyData $ data ,
93
93
/** @var \Spatie\LaravelData\Tests\Fakes\LazyData[] */
@@ -324,8 +324,7 @@ public function it_can_manually_specify_a_transformer()
324
324
public function __construct (
325
325
#[WithTransformer(DateTransformer::class, 'd-m-Y ' )]
326
326
public $ date
327
- )
328
- {
327
+ ) {
329
328
}
330
329
};
331
330
@@ -349,7 +348,7 @@ public function it_can_dynamically_include_data_based_upon_the_request()
349
348
/** @test */
350
349
public function it_can_get_the_data_object_without_transforming ()
351
350
{
352
- $ data = new class ($ dataObject = new SimpleData ('Test ' ), $ dataCollection = SimpleData::collection ([ new SimpleData ('A ' ), new SimpleData ('B ' ), ]), Lazy::create (fn () => new SimpleData ('Lazy ' )), 'Test ' , $ transformable = new DateTime ('16 may 1994 ' ),) extends Data {
351
+ $ data = new class ($ dataObject = new SimpleData ('Test ' ), $ dataCollection = SimpleData::collection ([ new SimpleData ('A ' ), new SimpleData ('B ' ), ]), Lazy::create (fn () => new SimpleData ('Lazy ' )), 'Test ' , $ transformable = new DateTime ('16 may 1994 ' ), ) extends Data {
353
352
public function __construct (
354
353
public SimpleData $ data ,
355
354
public DataCollection $ dataCollection ,
0 commit comments