Skip to content

Commit 0522de9

Browse files
committed
[#7686] tweak the example code
1 parent 4170916 commit 0522de9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

reference/constraints/Collection.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ of a collection individually. Take the following example::
3838
class Author
3939
{
4040
protected $profileData = array(
41-
'personal_email' => '',
42-
'short_bio' => '',
41+
'personal_email' => '...',
42+
'short_bio' => '...',
4343
);
4444

4545
public function setProfileData($key, $value)
@@ -80,8 +80,8 @@ following:
8080
* )
8181
*/
8282
protected $profileData = array(
83-
'personal_email' => '',
84-
'short_bio' => '',
83+
'personal_email' => '...',
84+
'short_bio' => '...',
8585
);
8686
}
8787

0 commit comments

Comments
 (0)