1
0
Fork 0

Removed nullable type for PHP 7.0 support

pull/661/head
dantleech 2018-07-29 19:06:51 +01:00 committed by Daniel Leech
parent f58e56cc7f
commit 49ebf7cb24
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ class SymbolInformationFactory
* @param string $fqn If given, $containerName will be extracted from it
* @return SymbolInformation|null
*/
public static function fromNode($node, string $fqn = null):? SymbolInformation
public static function fromNode($node, string $fqn = null)
{
$symbol = new SymbolInformation();
if ($node instanceof Node\Statement\ClassDeclaration) {