While browsing the code of an open source PHP library I spotted this line:
$path = $path ?: $this->guessPackagePath();
This is not the ternary operator like it usually apprears. Would anyone explain what is going on in it?
While browsing the code of an open source PHP library I spotted this line:
$path = $path ?: $this->guessPackagePath();
This is not the ternary operator like it usually apprears. Would anyone explain what is going on in it?