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

Commit ca26768

Browse files
committed
Merge pull request #103 from WeareJH/bug/72-zend-config
Eliminate usage of Zend_Config from Magento 2 Open Source #71
2 parents 23efe70 + 97bead2 commit ca26768

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

app/code/Magento/Integration/Model/Oauth/Consumer/Validator/KeyLength.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class KeyLength extends \Zend_Validate_StringLength
3939
* Default encoding is set to utf-8 if none provided
4040
* New option name added to allow adding key name in validation error messages
4141
*
42-
* @param integer|array|\Zend_Config $options
42+
* @inheritdoc
4343
*/
4444
public function __construct($options = [])
4545
{

lib/internal/Magento/Framework/Validator/EmailAddress.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,6 @@
77
*/
88
namespace Magento\Framework\Validator;
99

10-
use Zend_Config;
11-
1210
class EmailAddress extends \Zend_Validate_EmailAddress implements \Magento\Framework\Validator\ValidatorInterface
1311
{
1412
/**
@@ -21,7 +19,7 @@ class EmailAddress extends \Zend_Validate_EmailAddress implements \Magento\Frame
2119
* 'mx' => If MX check should be enabled, boolean
2220
* 'deep' => If a deep MX check should be done, boolean
2321
*
24-
* @param array|string|Zend_Config $options OPTIONAL
22+
* @inheritdoc
2523
*/
2624
public function __construct($options = [])
2725
{

0 commit comments

Comments
 (0)