[cs] spaces

This commit is contained in:
TomasVotruba 2017-08-13 14:16:40 +02:00 committed by Nikita Popov
parent 05e6725b7a
commit 9d599040b7
2 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ interface FunctionLike extends Node
/**
* Get the declared return type or null
*
*
* @return null|Identifier|Node\Name|Node\NullableType
*/
public function getReturnType();

View File

@ -119,7 +119,7 @@ class Standard extends PrettyPrinterAbstract
}
$escaped = $this->escapeString($node->value, null);
return $this->pNoIndent("<<<$label\n" . $escaped ."\n$label")
return $this->pNoIndent("<<<$label\n" . $escaped . "\n$label")
. $this->docStringEndToken;
}
/* break missing intentionally */