Skip to content

Commit ec46021

Browse files
committed
Release 1.12.10
1 parent 3c5b2b2 commit ec46021

Some content is hidden

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

89 files changed

+518
-294
lines changed

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2005-2014, Zend Technologies USA, Inc.
1+
Copyright (c) 2005-2015, Zend Technologies USA, Inc.
22
All rights reserved.
33

44
Redistribution and use in source and binary forms, with or without modification,

library/Zend/Validate.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate implements Zend_Validate_Interface

library/Zend/Validate/Abstract.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
abstract class Zend_Validate_Abstract implements Zend_Validate_Interface
@@ -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: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate_Alnum extends Zend_Validate_Abstract
@@ -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: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate_Alpha extends Zend_Validate_Abstract
@@ -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: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -32,7 +32,7 @@
3232
/**
3333
* @category Zend
3434
* @package Zend_Validate
35-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
35+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3636
* @license http://framework.zend.com/license/new-bsd New BSD License
3737
*/
3838
class Zend_Validate_Barcode extends Zend_Validate_Abstract
@@ -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/AdapterAbstract.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
abstract class Zend_Validate_Barcode_AdapterAbstract

library/Zend/Validate/Barcode/AdapterInterface.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
2121

2222
/**
2323
* @category Zend
2424
* @package Zend_Validate
25-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
25+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
2626
* @license http://framework.zend.com/license/new-bsd New BSD License
2727
*/
2828
interface Zend_Validate_Barcode_AdapterInterface
@@ -62,7 +62,7 @@ public function getCheck();
6262
* Sets the checksum validation
6363
*
6464
* @param boolean $check
65-
* @return Zend_Validate_Barcode_Adapter Provides fluid interface
65+
* @return Zend_Validate_Barcode_Adapter Provides a fluent interface
6666
*/
6767
public function setCheck($check);
6868
}

library/Zend/Validate/Barcode/Code25.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate_Barcode_Code25 extends Zend_Validate_Barcode_AdapterAbstract
@@ -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: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate_Barcode_Code25interleaved extends Zend_Validate_Barcode_AdapterAbstract
@@ -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: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate_Barcode_Code39 extends Zend_Validate_Barcode_AdapterAbstract
@@ -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: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate_Barcode_Code39ext extends Zend_Validate_Barcode_AdapterAbstract
@@ -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: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate_Barcode_Code93 extends Zend_Validate_Barcode_AdapterAbstract
@@ -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: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate_Barcode_Code93ext extends Zend_Validate_Barcode_AdapterAbstract
@@ -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
{

library/Zend/Validate/Barcode/Ean12.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate_Barcode_Ean12 extends Zend_Validate_Barcode_AdapterAbstract

library/Zend/Validate/Barcode/Ean13.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
*
1515
* @category Zend
1616
* @package Zend_Validate
17-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
17+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
1818
* @license http://framework.zend.com/license/new-bsd New BSD License
1919
* @version $Id$
2020
*/
@@ -27,7 +27,7 @@
2727
/**
2828
* @category Zend
2929
* @package Zend_Validate
30-
* @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com)
30+
* @copyright Copyright (c) 2005-2015 Zend Technologies USA Inc. (http://www.zend.com)
3131
* @license http://framework.zend.com/license/new-bsd New BSD License
3232
*/
3333
class Zend_Validate_Barcode_Ean13 extends Zend_Validate_Barcode_AdapterAbstract

0 commit comments

Comments
 (0)