Skip to content

Commit 0085aec

Browse files
committed
Fix quotes in exception messages
1 parent 2a8f012 commit 0085aec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Command/Command.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ public function run(InputInterface $input, OutputInterface $output)
255255
$statusCode = $this->execute($input, $output);
256256

257257
if (!\is_int($statusCode)) {
258-
throw new \TypeError(sprintf('Return value of "%s::execute()" must be of the type int, %s returned.', static::class, \gettype($statusCode)));
258+
throw new \TypeError(sprintf('Return value of "%s::execute()" must be of the type int, "%s" returned.', static::class, \gettype($statusCode)));
259259
}
260260
}
261261

0 commit comments

Comments
 (0)