Skip to content

Commit

Permalink
fix copy-paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
keradus committed Apr 13, 2021
1 parent 4cbca25 commit 505b436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Console/ConfigurationResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ public function getConfig(): ConfigInterface
];

if (isset($deprecatedConfigs[$configFileBasename])) {
throw new InvalidConfigurationException::class("Configuration file `{$configFileBasename}` is outdated, rename to `{$deprecatedConfigs[$configFileBasename]}`.");
throw new InvalidConfigurationException("Configuration file `{$configFileBasename}` is outdated, rename to `{$deprecatedConfigs[$configFileBasename]}`.");
}

$this->config = self::separatedContextLessInclude($configFile);
Expand Down

0 comments on commit 505b436

Please sign in to comment.