Skip to content

Commit 2b708c4

Browse files
authored
Apply fixes from StyleCI (#1060)
1 parent 31bc596 commit 2b708c4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Exception/FunctionNotFound.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ final class FunctionNotFound extends \RuntimeException implements Exception
2323
*/
2424
public function __construct(string $functionName, $description = null)
2525
{
26-
parent::__construct(sprintf('The function "%s" cannot be found. %s',
26+
parent::__construct(sprintf(
27+
'The function "%s" cannot be found. %s',
2728
$functionName,
2829
null !== $description ? sprintf(' %s', $description) : ''
2930
));

0 commit comments

Comments
 (0)