Skip to content

Commit

Permalink
+ execCode()
Browse files Browse the repository at this point in the history
  • Loading branch information
hiqsol committed Oct 15, 2016
1 parent 1de67f0 commit a6d06bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/controllers/AbstractController.php
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,11 @@ public function exec($name, $args = '', $returnExitCode = false)
return $this->takeGoal('binaries')->execBinary($name, $args, $returnExitCode);
}

public function execCode($name, $args = '')
{
return $this->takeGoal('binaries')->execBinary($name, $args, true);
}

public function readline($prompt)
{
return readline($prompt);
Expand Down

0 comments on commit a6d06bf

Please sign in to comment.