Skip to content

Commit 3f53240

Browse files
committed
Tweak
1 parent 8c10471 commit 3f53240

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

components/serializer.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,9 @@ exists in your project::
126126
Now, if you want to serialize this object into JSON, you only need to
127127
use the Serializer service created before::
128128

129-
$person = new \App\Model\Person();
129+
use App\Model\Person;
130+
131+
$person = new Person();
130132
$person->setName('foo');
131133
$person->setAge(99);
132134
$person->setSportsperson(false);

0 commit comments

Comments
 (0)