Skip to content

Commit

Permalink
Merge ebd0d0b into ba0c96c
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiasnoback committed Jul 7, 2015
2 parents ba0c96c + ebd0d0b commit 7cfd177
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/GeneratedHydrator/Configuration.php
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ public function getGeneratedClassesNamespace()
*/
public function setGeneratedClassesTargetDir($generatedClassesTargetDir)
{
$this->generatedClassesTargetDir = (string) $generatedClassesTargetDir;
$this->generatedClassesTargetDir = $generatedClassesTargetDir;
}

/**
Expand All @@ -176,7 +176,7 @@ public function getGeneratedClassesTargetDir()
$this->generatedClassesTargetDir = sys_get_temp_dir();
}

return $this->generatedClassesTargetDir;
return (string) $this->generatedClassesTargetDir;
}

/**
Expand Down

0 comments on commit 7cfd177

Please sign in to comment.