You are here

public function Serializer::setIndentationString in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 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\DocBlock

Code

public function setIndentationString($indentString) {
  $this->indentString = (string) $indentString;
  return $this;
}