Skip to content

Commit

Permalink
Fix whitespace in namespace (#3641)
Browse files Browse the repository at this point in the history
  • Loading branch information
pierredup committed Jul 17, 2020
1 parent bfba69a commit d5a9276
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Metadata/Extractor/AbstractExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ protected function resolve($value)
return (string) $resolved;
}

throw new\ RuntimeException(sprintf('The container parameter "%s", used in the resource configuration value "%s", must be a string or numeric, but it is of type %s.', $parameter, $value, \gettype($resolved)));
throw new \RuntimeException(sprintf('The container parameter "%s", used in the resource configuration value "%s", must be a string or numeric, but it is of type %s.', $parameter, $value, \gettype($resolved)));
}, $value);

return str_replace('%%', '%', $escapedValue);
Expand Down

0 comments on commit d5a9276

Please sign in to comment.