Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions lib/Element/Uri.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ function __construct($value)
}

/**
* The serialize method is called during xml writing.
* This method is called during xml writing.
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed it because the methods name is not serialze..

*
* It should use the $writer argument to encode this object into XML.
*
Expand All @@ -67,9 +67,9 @@ function serializeXml(XML\Writer $writer) {
}

/**
* The deserialize method is called during xml parsing.
* This method is called during xml parsing.
*
* This method is called statictly, this is because in theory this method
* This method is called statically, this is because in theory this method
* may be used as a type of constructor, or factory method.
*
* Often you want to return an instance of the current class, but you are
Expand Down