From e1940c25bc1aac645fb6939de7b4d861d810fc10 Mon Sep 17 00:00:00 2001 From: Markus Podar Date: Fri, 26 Jun 2020 07:05:20 +0200 Subject: [PATCH] Remove deprecated sublime option (#976) It has been marked as deprecated for 7 years (!) and the option isn't used in the current code, i.e it does nothing. --- src/Console/GeneratorCommand.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/Console/GeneratorCommand.php b/src/Console/GeneratorCommand.php index b5694ba..6de5012 100644 --- a/src/Console/GeneratorCommand.php +++ b/src/Console/GeneratorCommand.php @@ -172,7 +172,6 @@ class GeneratorCommand extends Command array('write_mixins', "W", InputOption::VALUE_OPTIONAL, 'Write mixins to Laravel Model?', $writeMixins), array('helpers', "H", InputOption::VALUE_NONE, 'Include the helper files'), array('memory', "M", InputOption::VALUE_NONE, 'Use sqlite memory driver'), - array('sublime', "S", InputOption::VALUE_NONE, 'DEPRECATED: Use different style for SublimeText CodeIntel'), ); } }