[DomCrawler] Fix docblocks and formatting.

This commit is contained in:
Jakub Zalas 2014-07-03 23:56:58 +01:00
parent 38be14dd14
commit 5cbe13e371

View File

@ -24,10 +24,12 @@ class Link
* @var \DOMNode A \DOMNode instance * @var \DOMNode A \DOMNode instance
*/ */
protected $node; protected $node;
/** /**
* @var string The method to use for the link * @var string The method to use for the link
*/ */
protected $method; protected $method;
/** /**
* @var string The URI of the page where the link is embedded (or the base href) * @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. * 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 * @return string
*/ */
@ -199,9 +201,9 @@ class Link
/** /**
* Remove the query string from the uri. * Remove the query string from the uri.
* *
* @param $uri * @param string $uri
* *
* @return array * @return string
*/ */
private function cleanupQuery($uri) private function cleanupQuery($uri)
{ {
@ -215,7 +217,7 @@ class Link
/** /**
* Remove the anchor from the uri. * Remove the anchor from the uri.
* *
* @param $uri * @param string $uri
* *
* @return string * @return string
*/ */