From 5cbe13e371783e3c46eea6440f6695e2a38d2476 Mon Sep 17 00:00:00 2001 From: Jakub Zalas Date: Thu, 3 Jul 2014 23:56:58 +0100 Subject: [PATCH] [DomCrawler] Fix docblocks and formatting. --- src/Symfony/Component/DomCrawler/Link.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Symfony/Component/DomCrawler/Link.php b/src/Symfony/Component/DomCrawler/Link.php index 57cf2b4f21..3eb9e8d50b 100644 --- a/src/Symfony/Component/DomCrawler/Link.php +++ b/src/Symfony/Component/DomCrawler/Link.php @@ -24,10 +24,12 @@ class Link * @var \DOMNode A \DOMNode instance */ protected $node; + /** * @var string The method to use for the link */ protected $method; + /** * @var string The URI of the page where the link is embedded (or the base href) */ @@ -187,7 +189,7 @@ class Link /** * Removes the query string and the anchor from the given uri. * - * @param string $uri The uri to clean + * @param string $uri The uri to clean * * @return string */ @@ -199,9 +201,9 @@ class Link /** * Remove the query string from the uri. * - * @param $uri + * @param string $uri * - * @return array + * @return string */ private function cleanupQuery($uri) { @@ -215,7 +217,7 @@ class Link /** * Remove the anchor from the uri. * - * @param $uri + * @param string $uri * * @return string */