1
0
Fork 0

fix code style

pull/352/head
jens1o 2017-04-12 10:10:59 +02:00
parent 33ff7600a5
commit 1b9d870eff
1 changed files with 3 additions and 3 deletions

View File

@ -766,10 +766,10 @@ class DefinitionResolver
$docBlock = $node->getAttribute('docBlock');
if ($docBlock !== null) {
// use @var tag
foreach($docBlock->getTagsByName('var') as $varTag) {
foreach ($docBlock->getTagsByName('var') as $varTag) {
$type = $varTag->getType();
if($type === null) {
if ($type === null) {
break;
}
return $type;
@ -924,6 +924,6 @@ class DefinitionResolver
return null;
}
return (string)$node->args[0]->value->value;
}
}
}
}