Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Merge pull request zendframework/zendframework#2153 from PHPGangsta/f…
Browse files Browse the repository at this point in the history
…ixes/phpdocClassesAndNamespaces

added @return where missing
  • Loading branch information
Maks3w committed Aug 11, 2012
2 parents 9e2e51b + fd8d627 commit 3953c79
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/Helper/Gravatar.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ public function setDefaultImg($defaultImg)
*
* @link http://pl.gravatar.com/site/implement/url More information about rating.
* @param string $rating Value for rating. Allowed values are: g, px, r,x
* @return Gravatar
* @throws Exception\DomainException
*/
public function setRating($rating)
Expand Down
1 change: 1 addition & 0 deletions src/Helper/Navigation/Links.php
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ public function __invoke($container = null)
*
* @param string $method method name
* @param array $arguments method arguments
* @return mixed
* @throws Exception\ExceptionInterface if method does not exist in container
*/
public function __call($method, array $arguments = array())
Expand Down
6 changes: 3 additions & 3 deletions src/Helper/Navigation/Sitemap.php
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ public function getFormatOutput()
* Sets whether the XML declaration should be used in output
*
* @param bool $useXmlDecl whether XML declaration should be rendered
* @returnSitemap fluent interface, returns self
* @return Sitemap fluent interface, returns self
*/
public function setUseXmlDeclaration($useXmlDecl)
{
Expand All @@ -148,7 +148,7 @@ public function getUseXmlDeclaration()
* Sets whether sitemap should be validated using Zend\Validate\Sitemap_*
*
* @param bool $useSitemapValidators whether sitemap validators should be used
* @returnSitemap fluent interface, returns self
* @return Sitemap fluent interface, returns self
*/
public function setUseSitemapValidators($useSitemapValidators)
{
Expand All @@ -170,7 +170,7 @@ public function getUseSitemapValidators()
* Sets whether sitemap should be schema validated when generated
*
* @param bool $schemaValidation whether sitemap should validated using XSD Schema
* @returnSitemap fluent interface, returns self
* @return Sitemap
*/
public function setUseSchemaValidation($schemaValidation)
{
Expand Down

0 comments on commit 3953c79

Please sign in to comment.