From e767bd80cd7bf34b9b96f5633a2453b98ec9e8f9 Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Wed, 19 Nov 2014 19:42:52 +0100 Subject: [PATCH 1/2] Fixed phpdoc --- lib/Element/Uri.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Element/Uri.php b/lib/Element/Uri.php index 8ee6a49..f778a16 100644 --- a/lib/Element/Uri.php +++ b/lib/Element/Uri.php @@ -41,7 +41,7 @@ function __construct($value) } /** - * The serialize method is called during xml writing. + * This method is called during xml writing. * * It should use the $writer argument to encode this object into XML. * @@ -69,7 +69,7 @@ function serializeXml(XML\Writer $writer) { /** * The deserialize 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 From 90a070fa89a1cf45d77745d7a6102e37f3f34fdd Mon Sep 17 00:00:00 2001 From: Markus Staab Date: Wed, 19 Nov 2014 19:44:15 +0100 Subject: [PATCH 2/2] Fixed typo --- lib/Element/Uri.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Element/Uri.php b/lib/Element/Uri.php index f778a16..bece93d 100644 --- a/lib/Element/Uri.php +++ b/lib/Element/Uri.php @@ -67,7 +67,7 @@ function serializeXml(XML\Writer $writer) { } /** - * The deserialize method is called during xml parsing. + * This method is called during xml parsing. * * This method is called statically, this is because in theory this method * may be used as a type of constructor, or factory method.