-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
use json type instead of removed array type
- Loading branch information
Showing
3 changed files
with
15 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,11 @@ | |
|
||
<mapped-superclass name="Symfony\Component\Routing\Route"> | ||
<field name="host" type="string"/> | ||
<field name="schemes" type="array"/> | ||
This comment has been minimized.
Sorry, something went wrong.
This comment has been minimized.
Sorry, something went wrong.
dbu
Author
Member
|
||
<field name="methods" type="array"/> | ||
<field name="defaults" type="array"/> | ||
<field name="requirements" type="array"/> | ||
<field name="options" type="array"/> | ||
<field name="schemes" type="json"/> | ||
<field name="methods" type="json"/> | ||
<field name="defaults" type="json"/> | ||
<field name="requirements" type="json"/> | ||
<field name="options" type="json"/> | ||
<field name="condition" column="`condition`" type="string"/> | ||
</mapped-superclass> | ||
|
||
|
IMO it's a BC break... there is not easy way to migrate php serialization to json.