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

Commit

Permalink
CS fixes
Browse files Browse the repository at this point in the history
- Changes in php-cs-fixer resulted in a majority of ZF2 files failing due to EOF
  differences. Ran the tool over all files in tests and library, and updated the
  Zend\View\Helper\Navigation\Sitemap tests to make them more robust in
  expectations regarding EOF characters.
  • Loading branch information
weierophinney committed Sep 21, 2012
1 parent 2817c6f commit 57efe00
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 5 additions & 5 deletions src/Cloud/Decorator/AbstractDecorator.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public function setEscaper($escaper)
$this->escaper = $escaper;
return $this;
}

/**
* Retrieve Escaper instance
*
Expand All @@ -132,8 +132,8 @@ public function getEscaper()

/**
* Validate an HTML element name
*
* @param string $name
*
* @param string $name
* @throws Exception\InvalidElementNameException
*/
protected function validateElementName($name)
Expand All @@ -149,8 +149,8 @@ protected function validateElementName($name)

/**
* Validate an HTML attribute name
*
* @param string $name
*
* @param string $name
* @throws Exception\InvalidAttributeNameException
*/
protected function validateAttributeName($name)
Expand Down
1 change: 0 additions & 1 deletion src/Cloud/DecoratorPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,4 +61,3 @@ public function validatePlugin($plugin)
));
}
}

0 comments on commit 57efe00

Please # to comment.