Skip to content
This repository was archived by the owner on Jan 30, 2020. It is now read-only.

Commit 522c71f

Browse files
committed
code style fixes
1 parent 72b53e8 commit 522c71f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/Factory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ public function __construct(FormElementManager $formElementManager = null, Input
3737
if ($formElementManager) {
3838
$this->setFormElementManager($formElementManager);
3939
}
40-
41-
if($inputFilterFactory) {
40+
41+
if ($inputFilterFactory) {
4242
$this->setInputFilterFactory($inputFilterFactory);
4343
}
4444
}

test/FactoryTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ public function testCanCreateFormFromConcreteClassAndSpecifyCustomValidatorByNam
469469
}
470470
$this->assertTrue($found);
471471
}
472-
472+
473473
public function testCanCreateFormFromConcreteClassAndSpecifyCustomValidatorByNameAndSetinputFilterFactoryInConstructor()
474474
{
475475
$validatorManager = new \Zend\Validator\ValidatorPluginManager($this->services);
@@ -481,7 +481,7 @@ public function testCanCreateFormFromConcreteClassAndSpecifyCustomValidatorByNam
481481
$inputFilterFactory = new \Zend\InputFilter\Factory();
482482
$inputFilterFactory->setDefaultValidatorChain($defaultValidatorChain);
483483

484-
$factory = new FormFactory(null,$inputFilterFactory);
484+
$factory = new FormFactory(null, $inputFilterFactory);
485485

486486
$form = $factory->createForm([
487487
'name' => 'foo',

0 commit comments

Comments
 (0)