Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 0b689b7

Browse files
committed
Fixes DocBlocks in Zend_Validate
1 parent 007f538 commit 0b689b7

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+68
-83
lines changed

library/Zend/Validate/Abstract.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,6 +345,7 @@ public function getObscureValue()
345345
* Set translation object
346346
*
347347
* @param Zend_Translate|Zend_Translate_Adapter|null $translator
348+
* @throws Zend_Validate_Exception
348349
* @return Zend_Validate_Abstract
349350
*/
350351
public function setTranslator($translator = null)
@@ -392,7 +393,7 @@ public function hasTranslator()
392393
* Set default translation object for all validate objects
393394
*
394395
* @param Zend_Translate|Zend_Translate_Adapter|null $translator
395-
* @return void
396+
* @throws Zend_Validate_Exception
396397
*/
397398
public static function setDefaultTranslator($translator = null)
398399
{

library/Zend/Validate/Alnum.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ class Zend_Validate_Alnum extends Zend_Validate_Abstract
6565
/**
6666
* Sets default option values for this instance
6767
*
68-
* @param boolean|Zend_Config $allowWhiteSpace
69-
* @return void
68+
* @param boolean|Zend_Config $allowWhiteSpace
7069
*/
7170
public function __construct($allowWhiteSpace = false)
7271
{

library/Zend/Validate/Alpha.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ class Zend_Validate_Alpha extends Zend_Validate_Abstract
6565
/**
6666
* Sets default option values for this instance
6767
*
68-
* @param boolean|Zend_Config $allowWhiteSpace
69-
* @return void
68+
* @param boolean|Zend_Config $allowWhiteSpace
7069
*/
7170
public function __construct($allowWhiteSpace = false)
7271
{

library/Zend/Validate/Barcode.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,6 @@ class Zend_Validate_Barcode extends Zend_Validate_Abstract
7777
*
7878
* @param string|Zend_Config|
7979
* Zend_Validate_Barcode_BarcodeAdapter $adapter Barcode adapter to use
80-
* @return void
8180
* @throws Zend_Validate_Exception
8281
*/
8382
public function __construct($adapter)
@@ -126,7 +125,7 @@ public function getAdapter()
126125
*
127126
* @param string|Zend_Validate_Barcode $adapter Barcode adapter to use
128127
* @param array $options Options for this adapter
129-
* @return void
128+
* @return $this
130129
* @throws Zend_Validate_Exception
131130
*/
132131
public function setAdapter($adapter, $options = null)

library/Zend/Validate/Barcode/Code25.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ class Zend_Validate_Barcode_Code25 extends Zend_Validate_Barcode_AdapterAbstract
5454
* Constructor
5555
*
5656
* Sets check flag to false.
57-
*
58-
* @return void
5957
*/
6058
public function __construct()
6159
{

library/Zend/Validate/Barcode/Code25interleaved.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ class Zend_Validate_Barcode_Code25interleaved extends Zend_Validate_Barcode_Adap
5454
* Constructor
5555
*
5656
* Sets check flag to false.
57-
*
58-
* @return void
5957
*/
6058
public function __construct()
6159
{

library/Zend/Validate/Barcode/Code39.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,6 @@ class Zend_Validate_Barcode_Code39 extends Zend_Validate_Barcode_AdapterAbstract
6767
* Constructor
6868
*
6969
* Sets check flag to false.
70-
*
71-
* @return void
7270
*/
7371
public function __construct()
7472
{

library/Zend/Validate/Barcode/Code39ext.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ class Zend_Validate_Barcode_Code39ext extends Zend_Validate_Barcode_AdapterAbstr
4848
* Constructor
4949
*
5050
* Sets check flag to false.
51-
*
52-
* @return void
5351
*/
5452
public function __construct()
5553
{

library/Zend/Validate/Barcode/Code93.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,6 @@ class Zend_Validate_Barcode_Code93 extends Zend_Validate_Barcode_AdapterAbstract
6868
* Constructor
6969
*
7070
* Sets check flag to false.
71-
*
72-
* @return void
7371
*/
7472
public function __construct()
7573
{

library/Zend/Validate/Barcode/Code93ext.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,6 @@ class Zend_Validate_Barcode_Code93ext extends Zend_Validate_Barcode_AdapterAbstr
4848
* Constructor
4949
*
5050
* Sets check flag to false.
51-
*
52-
* @return void
5351
*/
5452
public function __construct()
5553
{

0 commit comments

Comments
 (0)