public function Serializer::setIndentationString in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Serializer.php \phpDocumentor\Reflection\DocBlock\Serializer::setIndentationString()
Sets the string to indent comments with.
Parameters
string $indentationString The string to indent comments with.:
Return value
$this This serializer object.
1 call to Serializer::setIndentationString()
- Serializer::__construct in vendor/
phpdocumentor/ reflection-docblock/ src/ phpDocumentor/ Reflection/ DocBlock/ Serializer.php - Create a Serializer instance.
File
- vendor/
phpdocumentor/ reflection-docblock/ src/ phpDocumentor/ Reflection/ DocBlock/ Serializer.php, line 68
Class
- Serializer
- Serializes a DocBlock instance.
Namespace
phpDocumentor\Reflection\DocBlockCode
public function setIndentationString($indentString) {
$this->indentString = (string) $indentString;
return $this;
}