Skip to content

Commit a95b2d7

Browse files
committed
Fix truncated code example in database-basics.md
The toPHP() method in the PointMutationType example was missing the closing parenthesis, semicolon, and closing brace.
1 parent fe3de30 commit a95b2d7

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

docs/en/orm/database-basics.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -703,7 +703,8 @@ class PointMutationType extends BaseType
703703
return null;
704704
}
705705

706-
return $this->pmDecode($valu
706+
return $this->pmDecode($value);
707+
}
707708

708709
public function marshal(mixed $value): mixed
709710
{

0 commit comments

Comments
 (0)