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 31bc596 commit 2b708c4Copy full SHA for 2b708c4
Exception/FunctionNotFound.php
@@ -23,7 +23,8 @@ final class FunctionNotFound extends \RuntimeException implements Exception
23
*/
24
public function __construct(string $functionName, $description = null)
25
{
26
- parent::__construct(sprintf('The function "%s" cannot be found. %s',
+ parent::__construct(sprintf(
27
+ 'The function "%s" cannot be found. %s',
28
$functionName,
29
null !== $description ? sprintf(' %s', $description) : ''
30
));
0 commit comments