Skip to content

Commit

Permalink
Changed printed() by printOutput()
Browse files Browse the repository at this point in the history
printed() function is deprecated: 
[warning] printed() is deprecated. Please use printOutput().
  • Loading branch information
osrecio authored Apr 21, 2017
1 parent f5da3d4 commit ddeac95
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Robo/Task/ValidateEnvironmentTask.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ protected function validateGit()
try {
$collection = $this->collectionBuilder();
/** @var RoboFile $collection */
$collection->taskExec("git ls-remote $gitUrl")->printed(false);
$collection->taskExec("git ls-remote $gitUrl")->printOutput(false);
/** @var CollectionBuilder $collection */

$gitCheckResult = $collection->run();
Expand Down Expand Up @@ -115,4 +115,4 @@ protected function validateBinIsExecutable($bin)
return $result;
}

}
}

0 comments on commit ddeac95

Please sign in to comment.