diff --git a/CHANGELOG.md b/CHANGELOG.md index 18914951e..a5e49c5dd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ * Make serialize methods final in `ContentBlock`, `AbstractFile`, `FormTrait`, `ObjectCollectionTrait` and `ObjectTrait` * Added support for relative paths in `PageObject::getLevelListing()` [#3110](https://github.com/getgrav/grav/issues/3110) * Better `--env` and `--lang` support for `bin/grav`, `bin/gpm` and `bin/plugin` console commands + * **BC BREAK** Shorthand for `--env`: `-e` will not work anymore as it conflicts with plugins 1. [](#bugfix) * Fixed port issue with `system.custom_base_url` * Hide errors with `exif_read_data` in `ImageFile` diff --git a/system/src/Grav/Console/Cli/YamlLinterCommand.php b/system/src/Grav/Console/Cli/YamlLinterCommand.php index 0ca771af8..66f4cc173 100644 --- a/system/src/Grav/Console/Cli/YamlLinterCommand.php +++ b/system/src/Grav/Console/Cli/YamlLinterCommand.php @@ -27,12 +27,6 @@ class YamlLinterCommand extends GravCommand { $this ->setName('yamllinter') - ->addOption( - 'env', - 'e', - InputOption::VALUE_OPTIONAL, - 'The environment to trigger a specific configuration. For example: localhost, mysite.dev, www.mysite.com' - ) ->addOption( 'all', 'a',