Remove unused import and variable

This commit is contained in:
Oliver Davies 2020-02-09 21:41:24 +00:00
parent 66e358b802
commit 41c23185c4

View file

@ -10,7 +10,6 @@ use Symfony\Component\Console\Input\InputArgument;
use Symfony\Component\Console\Input\InputInterface; use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\SymfonyStyle; use Symfony\Component\Console\Style\SymfonyStyle;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\Finder\Finder; use Symfony\Component\Finder\Finder;
use Symfony\Component\Finder\SplFileInfo; use Symfony\Component\Finder\SplFileInfo;
use Tightenco\Collect\Support\Collection; use Tightenco\Collect\Support\Collection;
@ -95,7 +94,6 @@ final class GenerateDrupal7Command extends Command
private function createFiles() private function createFiles()
{ {
$createdFiles = new Collection(); $createdFiles = new Collection();
$testNameConverter = new TestNameConverter();
/** @var SplFileInfo $file */ /** @var SplFileInfo $file */
foreach ($this->finder->in(__DIR__.'/../../fixtures/drupal7_module')->files() as $file) { foreach ($this->finder->in(__DIR__.'/../../fixtures/drupal7_module')->files() as $file) {