You are here

public function Context::setLSEN in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Context.php \phpDocumentor\Reflection\DocBlock\Context::setLSEN()

Sets a new Local Structural Element Name.

Sets a new Local Structural Element Name. A local name also contains punctuation determining the kind of structural element (e.g. trailing "(" and ")" for functions and methods).

Parameters

string $lsen The new local name of a structural element.:

Return value

$this

1 call to Context::setLSEN()
Context::__construct in vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Context.php
Cteates a new context.

File

vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Context.php, line 149

Class

Context
The context in which a DocBlock occurs.

Namespace

phpDocumentor\Reflection\DocBlock

Code

public function setLSEN($lsen) {
  $this->lsen = (string) $lsen;
  return $this;
}