Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Codegyre/Robo
Browse files Browse the repository at this point in the history
Conflicts:
	src/Task/Development/PackPhar.php
  • Loading branch information
DavertMik committed Feb 24, 2015
1 parent f6a013f commit 5b713a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Task/File/Write.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function textFromFile($filename)
}

/**
* substitute a placeholder with value, placeholder must be enclosed by {}
* substitute a placeholder with value, placeholder must be enclosed by {{}}
*
* @param string $name
* @param string $val
Expand All @@ -93,7 +93,7 @@ public function textFromFile($filename)
*/
public function place($name, $val)
{
$this->replace("{" . $name . "}", $val);
$this->replace('{{' . $name . '}}', $val);
return $this;
}

Expand Down

0 comments on commit 5b713a5

Please sign in to comment.