From ddeac950bd2782dad3cac6384e7e7463f2f16c33 Mon Sep 17 00:00:00 2001 From: Oscar Recio Date: Fri, 21 Apr 2017 13:22:38 +0200 Subject: [PATCH] Changed printed() by printOutput() printed() function is deprecated: [warning] printed() is deprecated. Please use printOutput(). --- src/Robo/Task/ValidateEnvironmentTask.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Robo/Task/ValidateEnvironmentTask.php b/src/Robo/Task/ValidateEnvironmentTask.php index 7b7d056..6b71d10 100644 --- a/src/Robo/Task/ValidateEnvironmentTask.php +++ b/src/Robo/Task/ValidateEnvironmentTask.php @@ -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(); @@ -115,4 +115,4 @@ protected function validateBinIsExecutable($bin) return $result; } -} \ No newline at end of file +}