Skip to content

Commit

Permalink
Fix argument order of JsonSerializationVisitor::visitProperty()
Browse files Browse the repository at this point in the history
  • Loading branch information
jdreesen authored Jul 12, 2019
1 parent 54054a5 commit 92e4a52
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion UPGRADING.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ If you are on version `1.x`, it is suggested to migrate directly to `3.0.0` (sin
- Removed the abstract classes `GenericSerializationVisitor` and `GenericDeserializationVisitor`.
- Removed deprecated method `VisitorInterface::getNavigator`, use `Context::getNavigator` instead
- Removed deprecated method `JsonSerializationVisitor::addData`,
use `::visitProperty(new StaticPropertyMetadata('', 'name', null), 'value')` instead
use `::visitProperty(new StaticPropertyMetadata('', 'name', 'value'), null)` instead
- Removed Propel and PhpCollection support
- Changed default date format from ISO8601 to RFC3339
- Event listeners/handlers class names are case sensitive now
Expand Down

0 comments on commit 92e4a52

Please sign in to comment.