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

Commit

Permalink
[#3742] CS fixes
Browse files Browse the repository at this point in the history
- trailing whitespace, end of file linefeed
  • Loading branch information
weierophinney committed Feb 19, 2013
1 parent d58ccad commit f3eb430
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 27 deletions.
2 changes: 1 addition & 1 deletion tests/ZendTest/Form/Annotation/AnnotationBuilderTest.php
Expand Up @@ -218,7 +218,7 @@ public function testAllowEmptyInput()
$sampleinput = $inputFilter->get('sampleinput'); $sampleinput = $inputFilter->get('sampleinput');
$this->assertTrue($sampleinput->allowEmpty()); $this->assertTrue($sampleinput->allowEmpty());
} }

public function testObjectElementAnnotation() public function testObjectElementAnnotation()
{ {
$entity = new TestAsset\Annotation\EntityUsingObjectProperty(); $entity = new TestAsset\Annotation\EntityUsingObjectProperty();
Expand Down
@@ -1,26 +1,26 @@
<?php <?php
/** /**
* Zend Framework (http://framework.zend.com/) * Zend Framework (http://framework.zend.com/)
* *
* @link http://github.com/zendframework/zf2 for the canonical source repository * @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com) * @copyright Copyright (c) 2005-2013 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License * @license http://framework.zend.com/license/new-bsd New BSD License
* @package Zend_Form * @package Zend_Form
*/ */


namespace ZendTest\Form\TestAsset\Annotation; namespace ZendTest\Form\TestAsset\Annotation;


use Zend\Form\Annotation; use Zend\Form\Annotation;


/** /**
* @Annotation\Options({"use_as_base_fieldset":true}) * @Annotation\Options({"use_as_base_fieldset":true})
*/ */
class EntityUsingObjectProperty class EntityUsingObjectProperty
{ {
/** /**
* @Annotation\Object("ZendTest\Form\TestAsset\Annotation\Entity") * @Annotation\Object("ZendTest\Form\TestAsset\Annotation\Entity")
* @Annotation\Type("Zend\Form\Fieldset") * @Annotation\Type("Zend\Form\Fieldset")
* @Annotation\Hydrator({"type":"Zend\Stdlib\Hydrator\ClassMethods", "options": {"underscoreSeparatedKeys": false}}) * @Annotation\Hydrator({"type":"Zend\Stdlib\Hydrator\ClassMethods", "options": {"underscoreSeparatedKeys": false}})
*/ */
public $object; public $object;
} }

0 comments on commit f3eb430

Please sign in to comment.