You are here

public function Serializer::setIsFirstLineIndented 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::setIsFirstLineIndented()

Sets whether or not the first line should be indented.

Sets whether or not the first line (the one with the "") should be indented.

Parameters

bool $indentFirstLine The new value for this setting.:

Return value

$this This serializer object.

1 call to Serializer::setIsFirstLineIndented()
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 117

Class

Serializer
Serializes a DocBlock instance.

Namespace

phpDocumentor\Reflection\DocBlock

Code

public function setIsFirstLineIndented($indentFirstLine) {
  $this->isFirstLineIndented = (bool) $indentFirstLine;
  return $this;
}