Skip to content

Commit 4b7dd62

Browse files
committed
Merge branch '4.4' into 5.0
* 4.4: Update serializer.rst
2 parents 0516d85 + 3f53240 commit 4b7dd62

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)