Skip to content

Commit fb79851

Browse files
authored
Apply fixes from StyleCI (#65)
1 parent fec246c commit fb79851

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: src/Traits/ImmutableArray.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,4 +56,4 @@ public function offsetGet($offset): mixed
5656
{
5757
return $this->toArray()[$offset] ?? null;
5858
}
59-
}
59+
}

Diff for: src/Traits/SerializableContainer.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ public function unserialize($serialized): void
3636
public function __serialize(): array
3737
{
3838
return [
39-
'container' => $this->toContainer()
39+
'container' => $this->toContainer(),
4040
];
4141
}
4242

@@ -59,4 +59,4 @@ public function jsonSerialize(): array
5959
{
6060
return $this->toContainer();
6161
}
62-
}
62+
}

0 commit comments

Comments
 (0)