Skip to content

Commit a25770e

Browse files
author
Sam Stevens
committed
CS fix
1 parent 69c0c1d commit a25770e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

DependencyInjection/ClientFactory.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,9 @@ public function addCallback($callable)
185185
{
186186
// If the parameter is not a callable (if the method name does not exist on the class for example),
187187
// then throw an exception informing the user
188-
if (! is_callable($callable)) {
188+
if (!is_callable($callable)) {
189189
throw new \RuntimeException(sprintf(
190-
"Could not add Bugsnag callback. Class %s does not contain the \"%s\" method.",
190+
'Could not add Bugsnag callback. Class %s does not contain the "%s" method.',
191191
get_class($callable[0]),
192192
$callable[1]
193193
));

0 commit comments

Comments
 (0)