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

Commit

Permalink
Merge branch 'master' of https://github.com/zendframework/zf2
Browse files Browse the repository at this point in the history
  • Loading branch information
cdekok committed Mar 7, 2013
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Factory.php
Expand Up @@ -157,7 +157,7 @@ public static function toFile($filename, $config)
);
}

if(!isset(self::$writerExtensions[$extension])) {
if (!isset(self::$writerExtensions[$extension])) {
throw new Exception\RuntimeException(
"Unsupported config file extension: '.{$extension}' for writing."
);
Expand Down
2 changes: 1 addition & 1 deletion src/Reader/Ini.php
Expand Up @@ -148,7 +148,7 @@ protected function process(array $data)
*/
private function buildNestedSection($sections, $value)
{
if(count($sections) == 0) {
if (count($sections) == 0) {
return $this->processSection($value);
}

Expand Down
2 changes: 1 addition & 1 deletion test/FactoryTest.php
Expand Up @@ -32,7 +32,7 @@ protected function getTestAssetFileName($ext)

public function tearDown()
{
foreach($this->tmpFiles as $file) {
foreach ($this->tmpFiles as $file) {
if (file_exists($file)) {
if (!is_writable($file)) {
chmod($file, 0777);
Expand Down

0 comments on commit 24c5cf6

Please sign in to comment.