Skip to content

Commit c0f431d

Browse files
committed
Remove zend-i18n dev dependency
1 parent 79173b1 commit c0f431d

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

composer.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@
1919
"zendframework/zend-stdlib": "~2.5"
2020
},
2121
"require-dev": {
22-
"zendframework/zend-i18n": "~2.5",
2322
"zendframework/zend-servicemanager": "~2.5",
2423
"fabpot/php-cs-fixer": "1.7.*",
2524
"phpunit/PHPUnit": "^4.5"

test/CollectionInputFilterTest.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ public function getBaseInputFilter()
5050
$filter = new BaseInputFilter();
5151

5252
$foo = new Input();
53-
$foo->getFilterChain()->attachByName('stringtrim')
54-
->attachByName('alpha');
53+
$foo->getFilterChain()->attachByName('stringtrim');
5554
$foo->getValidatorChain()->attach(new Validator\StringLength(3, 6));
5655

5756
$bar = new Input();
@@ -76,8 +75,7 @@ public function getChildInputFilter()
7675
$filter = new BaseInputFilter();
7776

7877
$foo = new Input();
79-
$foo->getFilterChain()->attachByName('stringtrim')
80-
->attachByName('alpha');
78+
$foo->getFilterChain()->attachByName('stringtrim');
8179
$foo->getValidatorChain()->attach(new Validator\StringLength(3, 6));
8280

8381
$bar = new Input();

0 commit comments

Comments
 (0)