Skip to content
This repository has been archived by the owner on Jan 29, 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 0e07fcd + b7835bc commit 5c81acc
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
1 change: 1 addition & 0 deletions src/AbstractAdapter.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public function getName()
* Set name
*
* @param string $name
* @return AbstractAdapter
*/
public function setName($name)
{
Expand Down
4 changes: 2 additions & 2 deletions src/AbstractWord.php
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public function getId()
* Set captcha identifier
*
* @param string $id
* return Word
* @return AbstractWord
*/
protected function setId ($id)
{
Expand Down Expand Up @@ -347,7 +347,7 @@ public function generate()
/**
* Generate a random identifier
*
* @return void
* @return string
*/
protected function generateRandomId()
{
Expand Down
4 changes: 4 additions & 0 deletions src/Image.php
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,7 @@ public function getWidth()

/**
* @param string $startImage
* @return Image
*/
public function setStartImage($startImage)
{
Expand All @@ -274,6 +275,7 @@ public function setStartImage($startImage)

/**
* @param int $dotNoiseLevel
* @return Image
*/
public function setDotNoiseLevel($dotNoiseLevel)
{
Expand All @@ -283,6 +285,7 @@ public function setDotNoiseLevel($dotNoiseLevel)

/**
* @param int $lineNoiseLevel
* @return Image
*/
public function setLineNoiseLevel($lineNoiseLevel)
{
Expand Down Expand Up @@ -376,6 +379,7 @@ public function setImgUrl($imgUrl)

/**
* @param string $imgAlt
* @return Image
*/
public function setImgAlt($imgAlt)
{
Expand Down

0 comments on commit 5c81acc

Please sign in to comment.