File tree Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Expand file tree Collapse file tree 3 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -81,7 +81,7 @@ class DeployStaticOptions
8181 /**
8282 * Key for js-bundle option
8383 */
84- const NO_JS_BUNLDE = 'no-js-bundle ' ;
84+ const NO_JS_BUNDLE = 'no-js-bundle ' ;
8585
8686 /**
8787 * Key for css option
@@ -281,7 +281,7 @@ private function getSkipOptions()
281281 'Do not deploy JavaScript files. '
282282 ),
283283 new InputOption (
284- self ::NO_JS_BUNLDE ,
284+ self ::NO_JS_BUNDLE ,
285285 null ,
286286 InputOption::VALUE_NONE ,
287287 'Do not deploy JavaScript bundle files. '
Original file line number Diff line number Diff line change @@ -128,7 +128,7 @@ public function deploy(array $options)
128128 }
129129 }
130130
131- if ($ options [Options::NO_JAVASCRIPT ] !== true && $ options [Options::NO_JS_BUNLDE ] !== true ) {
131+ if ($ options [Options::NO_JAVASCRIPT ] !== true && $ options [Options::NO_JS_BUNDLE ] !== true ) {
132132 $ deployBundle = $ this ->objectManager ->create (Bundle::class, [
133133 'logger ' => $ this ->logger
134134 ]);
Original file line number Diff line number Diff line change @@ -228,13 +228,13 @@ public function deployDataProvider()
228228 public function testMaxExecutionTimeOptionPassed ()
229229 {
230230 $ options = [
231- DeployStaticOptions::MAX_EXECUTION_TIME => 100 ,
231+ DeployStaticOptions::MAX_EXECUTION_TIME => 100 ,
232232 DeployStaticOptions::REFRESH_CONTENT_VERSION_ONLY => false ,
233- DeployStaticOptions::JOBS_AMOUNT => 3 ,
234- DeployStaticOptions::STRATEGY => 'compact ' ,
235- DeployStaticOptions::NO_JAVASCRIPT => true ,
236- DeployStaticOptions::NO_JS_BUNLDE => true ,
237- DeployStaticOptions::NO_HTML_MINIFY => true ,
233+ DeployStaticOptions::JOBS_AMOUNT => 3 ,
234+ DeployStaticOptions::STRATEGY => 'compact ' ,
235+ DeployStaticOptions::NO_JAVASCRIPT => true ,
236+ DeployStaticOptions::NO_JS_BUNDLE => true ,
237+ DeployStaticOptions::NO_HTML_MINIFY => true ,
238238 ];
239239
240240 $ queueMock = $ this ->createMock (Queue::class);
You can’t perform that action at this time.
0 commit comments