Skip to content

Commit

Permalink
MAGETWO-67537: [WIP] Varnish Vcl generator command #9286
Browse files Browse the repository at this point in the history
- fixed static and integration tests
- moved interfaces to proper namespace
  • Loading branch information
vrann committed Apr 19, 2017
1 parent 1626609 commit 118932b
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -177,21 +177,21 @@ private function getOptionList()
self::BACKEND_HOST_OPTION,
null,
InputOption::VALUE_REQUIRED,
'Backend host for configuration',
'Host of the web backend',
'localhost'
),
new InputOption(
self::BACKEND_PORT_OPTION,
null,
InputOption::VALUE_REQUIRED,
'Backend post for configuration',
'Port of the web backend',
8080
),
new InputOption(
self::EXPORT_VERSION_OPTION,
null,
InputOption::VALUE_REQUIRED,
'Varnish configuration version to export',
'The version of Varnish file',
VclTemplateLocator::VARNISH_SUPPORTED_VERSION_4
),
new InputOption(
Expand All @@ -205,7 +205,7 @@ private function getOptionList()
self::OUTPUT_FILE_OPTION,
null,
InputOption::VALUE_REQUIRED,
'Save output to target file'
'Path to the file to write vcl'
),
];
}
Expand Down

0 comments on commit 118932b

Please sign in to comment.