Skip to content

Commit 45b9730

Browse files
rubenvanasscheactions-user
authored andcommitted
Fix styling
1 parent 639be15 commit 45b9730

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

src/Actions/ResolveDataObjectFromArrayAction.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ public function execute(string $class, array $values): Data
1919
{
2020
/** @var \Spatie\LaravelData\Data $data */
2121
$data = collect($this->dataConfig->getDataProperties($class))
22-
->mapWithKeys(fn(DataProperty $property) => [
22+
->mapWithKeys(fn (DataProperty $property) => [
2323
$property->name() => $this->resolveValue($property, $values[$property->name()] ?? null),
2424
])
25-
->pipe(fn(Collection $properties) => new $class(...$properties));
25+
->pipe(fn (Collection $properties) => new $class(...$properties));
2626

2727
return $data;
2828
}
@@ -51,7 +51,7 @@ private function resolveValue(DataProperty $property, mixed $value): mixed
5151

5252
if ($property->isDataCollection()) {
5353
$items = array_map(
54-
fn(array $item) => $this->execute($property->getDataClass(), $item),
54+
fn (array $item) => $this->execute($property->getDataClass(), $item),
5555
$value
5656
);
5757

src/LaravelDataServiceProvider.php

-5
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,8 @@
22

33
namespace Spatie\LaravelData;
44

5-
use Spatie\LaravelData\Casts\CarbonCast;
6-
use Spatie\LaravelData\Casts\CarbonImmutableCast;
7-
use Spatie\LaravelData\Casts\DateTimeCast;
8-
use Spatie\LaravelData\Casts\DateTimeImmutableCast;
95
use Spatie\LaravelData\Support\DataConfig;
106
use Spatie\LaravelData\Support\DataResolver;
11-
use Spatie\LaravelData\Transformers\DateTransformer;
127
use Spatie\LaravelPackageTools\Package;
138
use Spatie\LaravelPackageTools\PackageServiceProvider;
149

tests/DataTest.php

+3-4
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public function __construct(
8787
/** @test */
8888
public function it_can_include_a_nested_lazy_property()
8989
{
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 {
9191
public function __construct(
9292
public Lazy | LazyData $data,
9393
/** @var \Spatie\LaravelData\Tests\Fakes\LazyData[] */
@@ -324,8 +324,7 @@ public function it_can_manually_specify_a_transformer()
324324
public function __construct(
325325
#[WithTransformer(DateTransformer::class, 'd-m-Y')]
326326
public $date
327-
)
328-
{
327+
) {
329328
}
330329
};
331330

@@ -349,7 +348,7 @@ public function it_can_dynamically_include_data_based_upon_the_request()
349348
/** @test */
350349
public function it_can_get_the_data_object_without_transforming()
351350
{
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 {
353352
public function __construct(
354353
public SimpleData $data,
355354
public DataCollection $dataCollection,

tests/Support/TypeScriptTransformer/DataTypeScriptTransformerTest.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public function it_can_covert_a_data_object_to_typescript()
1818
{
1919
$config = TypeScriptTransformerConfig::create();
2020

21-
$data = new class(null, 42, true, 'Hello world', 3.14, ['the', 'meaning', 'of', 'life'], Lazy::create(fn () => 'Lazy'), SimpleData::create('Simple data'), SimpleData::collection([]),) extends Data {
21+
$data = new class(null, 42, true, 'Hello world', 3.14, ['the', 'meaning', 'of', 'life'], Lazy::create(fn () => 'Lazy'), SimpleData::create('Simple data'), SimpleData::collection([]), ) extends Data {
2222
public function __construct(
2323
public null | int $nullable,
2424
public int $int,

0 commit comments

Comments
 (0)