From 035f3020b6592510962f55c70f6b6aa30bf164ab Mon Sep 17 00:00:00 2001 From: Luke Kuzmish <42181698+cosmastech@users.noreply.github.com> Date: Thu, 7 Aug 2025 14:09:15 -0400 Subject: [PATCH] Update TransformableData.php --- src/Concerns/TransformableData.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Concerns/TransformableData.php b/src/Concerns/TransformableData.php index ff39e92d..075e3310 100644 --- a/src/Concerns/TransformableData.php +++ b/src/Concerns/TransformableData.php @@ -40,13 +40,13 @@ public function transform( return $resolver->execute($this, $transformationContext); } - /** @return array */ + /** @return array */ public function all(): array { return $this->transform(TransformationContextFactory::create()->withValueTransformation(false)); } - /** @return array */ + /** @return array */ public function toArray(): array { return $this->transform(); @@ -57,7 +57,7 @@ public function toJson($options = 0): string return json_encode($this->transform(), $options); } - /** @return array */ + /** @return array */ public function jsonSerialize(): array { return $this->transform();