Skip to content

Commit 70d8eb2

Browse files
committed
added missing IO
1 parent 406d98e commit 70d8eb2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/OpenMage/Composer/Plugin/TinyMce.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function process(Event $event, string $magentoRootDir): void
9393
$copySource = $copySource . '/langs' . $mainVersion;
9494
}
9595

96-
$this->copy($copySource, $magentoRootDir . $copyTarget);
96+
$this->copy($io, $copySource, $magentoRootDir . $copyTarget);
9797
}
9898
}
9999
}
@@ -129,7 +129,7 @@ private function getTinyMceModule(Event $event, IOInterface $io, string $module)
129129
return null;
130130
}
131131

132-
private function copy(string $source, string $target): void
132+
private function copy(IOInterface $io, string $source, string $target): void
133133
{
134134
$filesystem = new Filesystem();
135135
$finder = new Finder();

0 commit comments

Comments
 (0)