Skip to content

Commit 10c06e2

Browse files
committed
Remove unused use statement
1 parent be34f34 commit 10c06e2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/Script/Processor.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
namespace Tooly\Script;
44

55
use Composer\IO\IOInterface;
6-
use Tooly\Script\Decision\DecisionInterface;
76
use Tooly\Script\Decision\DoReplaceDecision;
87
use Tooly\Script\Decision\FileAlreadyExistDecision;
98
use Tooly\Script\Decision\IsAccessibleDecision;
@@ -67,7 +66,7 @@ public function process(Tool $tool)
6766
{
6867
$this->io->write(sprintf('<comment>Process tool "%s" ...</comment>', $tool->getName()));
6968

70-
/* @var $decision DecisionInterface */
69+
/* @var $decision \Tooly\Script\Decision\DecisionInterface */
7170
foreach ($this->getDecisions() as $decision) {
7271
if (true === $decision->canProceed($tool)) {
7372
continue;

0 commit comments

Comments
 (0)