X-Git-Url: https://yaffs.net/gitweb/?a=blobdiff_plain;f=vendor%2Fdrush%2Fdrush%2Ftests%2Fresources%2Fmodules%2Fd8%2Fwoot%2Fsrc%2FGenerators%2FExampleGenerator.php;fp=vendor%2Fdrush%2Fdrush%2Ftests%2Fresources%2Fmodules%2Fd8%2Fwoot%2Fsrc%2FGenerators%2FExampleGenerator.php;h=0000000000000000000000000000000000000000;hb=0bf8d09d2542548982e81a441b1f16e75873a04f;hp=17a64735ddf118ac558e0549500fd6c94d65a974;hpb=74df008bdbb3a11eeea356744f39b802369bda3c;p=yaffs-website diff --git a/vendor/drush/drush/tests/resources/modules/d8/woot/src/Generators/ExampleGenerator.php b/vendor/drush/drush/tests/resources/modules/d8/woot/src/Generators/ExampleGenerator.php deleted file mode 100644 index 17a64735d..000000000 --- a/vendor/drush/drush/tests/resources/modules/d8/woot/src/Generators/ExampleGenerator.php +++ /dev/null @@ -1,40 +0,0 @@ -moduleHandler = $moduleHandler; - } - - /** - * {@inheritdoc} - */ - protected function interact(InputInterface $input, OutputInterface $output) - { - $questions = Utils::defaultQuestions(); - - $vars = &$this->collectVars($input, $output, $questions); - $vars['class'] = Utils::camelize('Example_' . $vars['machine_name'] . '_Commands'); - - $this->addFile() - ->path('src/Commands/{class}.php') - ->template('example-generator.twig'); - } -}