Skip to content

Commit

Permalink
fix: exception message
Browse files Browse the repository at this point in the history
Co-authored-by: MGatner <mgatner@icloud.com>
  • Loading branch information
kenjis and MGatner committed Jan 31, 2023
1 parent b768f8f commit 5c46faa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion system/Filters/Filters.php
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ private function registerArguments(string $name, array $arguments, bool $check =
if ($arguments !== []) {
if ($check && array_key_exists($name, $this->arguments)) {
throw new ConfigException(
'"' . $name . '" has already arguments: '
'"' . $name . '" already has arguments: '
. (($this->arguments[$name] === null) ? 'null' : implode(',', $this->arguments[$name]))
);
}
Expand Down

0 comments on commit 5c46faa

Please sign in to comment.