Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ISAICP-5988: Require consolidation/robo:^2.1. #136

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"prefer-stable": true,
"require": {
"php": ">=7.2",
"consolidation/robo": "^1.4.7",
"consolidation/robo": "^2.1",
"gitonomy/gitlib": "^1.0",
"jakeasmith/http_build_url": "^1.0.1",
"nuvoleweb/robo-config": "^0.2.1",
"nuvoleweb/robo-config": "2.x-dev",
"symfony/console": "^3.4.21|^4|^5"
},
"require-dev": {
Expand Down
9 changes: 0 additions & 9 deletions src/Commands/DrupalCommands.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,6 @@

namespace OpenEuropa\TaskRunner\Commands;

use Consolidation\AnnotatedCommand\CommandData;
use NuvoleWeb\Robo\Task as NuvoleWebTasks;
use OpenEuropa\TaskRunner\Contract\FilesystemAwareInterface;
use OpenEuropa\TaskRunner\Tasks as TaskRunnerTasks;
use OpenEuropa\TaskRunner\Traits as TaskRunnerTraits;
use Symfony\Component\Console\Event\ConsoleCommandEvent;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Yaml\Yaml;

/**
* Base class for commands that interact with a Drupal installation.
*
Expand Down
4 changes: 2 additions & 2 deletions src/Tasks/CollectionFactory/CollectionFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ protected function taskFactory($task)
return $this->taskFilesystemStack()->chmod($task['file'], $task['permissions'], $task['umask'], $task['recursive']);

case "chgrp":
return $this->taskFilesystemStack()->chgrp($task['file'], $task['group'], $task['umask'], $task['recursive']);
return $this->taskFilesystemStack()->chgrp($task['file'], $task['group'], $task['recursive']);

case "chown":
return $this->taskFilesystemStack()->chown($task['file'], $task['user'], $task['umask'], $task['recursive']);
return $this->taskFilesystemStack()->chown($task['file'], $task['user'], $task['recursive']);

case "remove":
return $this->taskFilesystemStack()->remove($task['file']);
Expand Down