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 fa6eb48 commit 27e3c32Copy full SHA for 27e3c32
src/Exceptions/ArgumentNullException.php
@@ -8,7 +8,7 @@ class ArgumentNullException extends BaseException
8
{
9
public function __construct(string $argumentName = 'Argument')
10
11
- $msg = str_concat_space($argumentName, 'is null on', $this->line, 'in', $this->file);
+ $msg = "$argumentName is null on $this->line, in $this->file";
12
13
parent::__construct($msg, ExitCode::RESOURCE_UNAVAILABLE, $this->getPrevious());
14
}
0 commit comments