We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69c0c1d commit a25770eCopy full SHA for a25770e
DependencyInjection/ClientFactory.php
@@ -185,9 +185,9 @@ public function addCallback($callable)
185
{
186
// If the parameter is not a callable (if the method name does not exist on the class for example),
187
// then throw an exception informing the user
188
- if (! is_callable($callable)) {
+ if (!is_callable($callable)) {
189
throw new \RuntimeException(sprintf(
190
- "Could not add Bugsnag callback. Class %s does not contain the \"%s\" method.",
+ 'Could not add Bugsnag callback. Class %s does not contain the "%s" method.',
191
get_class($callable[0]),
192
$callable[1]
193
));
0 commit comments