We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be34f34 commit 10c06e2Copy full SHA for 10c06e2
src/Script/Processor.php
@@ -3,7 +3,6 @@
3
namespace Tooly\Script;
4
5
use Composer\IO\IOInterface;
6
-use Tooly\Script\Decision\DecisionInterface;
7
use Tooly\Script\Decision\DoReplaceDecision;
8
use Tooly\Script\Decision\FileAlreadyExistDecision;
9
use Tooly\Script\Decision\IsAccessibleDecision;
@@ -67,7 +66,7 @@ public function process(Tool $tool)
67
66
{
68
$this->io->write(sprintf('<comment>Process tool "%s" ...</comment>', $tool->getName()));
69
70
- /* @var $decision DecisionInterface */
+ /* @var $decision \Tooly\Script\Decision\DecisionInterface */
71
foreach ($this->getDecisions() as $decision) {
72
if (true === $decision->canProceed($tool)) {
73
continue;
0 commit comments