/**
  * The constructor takes the parent build file as an argument.
  * It sets executable file as 'php' by default
  *
  * @param phpucBuildFile $buildFile  The parent build file object.
  */
 public function __construct(phpucBuildFile $buildFile)
 {
     parent::__construct($buildFile);
     $this->executable = 'php';
 }