File tree 2 files changed +2
-5
lines changed 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 19
19
"zendframework/zend-stdlib" : " ~2.5"
20
20
},
21
21
"require-dev" : {
22
- "zendframework/zend-i18n" : " ~2.5" ,
23
22
"zendframework/zend-servicemanager" : " ~2.5" ,
24
23
"fabpot/php-cs-fixer" : " 1.7.*" ,
25
24
"phpunit/PHPUnit" : " ^4.5"
Original file line number Diff line number Diff line change @@ -50,8 +50,7 @@ public function getBaseInputFilter()
50
50
$ filter = new BaseInputFilter ();
51
51
52
52
$ foo = new Input ();
53
- $ foo ->getFilterChain ()->attachByName ('stringtrim ' )
54
- ->attachByName ('alpha ' );
53
+ $ foo ->getFilterChain ()->attachByName ('stringtrim ' );
55
54
$ foo ->getValidatorChain ()->attach (new Validator \StringLength (3 , 6 ));
56
55
57
56
$ bar = new Input ();
@@ -76,8 +75,7 @@ public function getChildInputFilter()
76
75
$ filter = new BaseInputFilter ();
77
76
78
77
$ foo = new Input ();
79
- $ foo ->getFilterChain ()->attachByName ('stringtrim ' )
80
- ->attachByName ('alpha ' );
78
+ $ foo ->getFilterChain ()->attachByName ('stringtrim ' );
81
79
$ foo ->getValidatorChain ()->attach (new Validator \StringLength (3 , 6 ));
82
80
83
81
$ bar = new Input ();
You can’t perform that action at this time.
0 commit comments