public function Location::setColumnNumber in Zircon Profile 8.0
Same name and namespace in other branches
- 8 vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Location.php \phpDocumentor\Reflection\DocBlock\Location::setColumnNumber()
Parameters
int $columnNumber:
Return value
$this
File
- vendor/
phpdocumentor/ reflection-docblock/ src/ phpDocumentor/ Reflection/ DocBlock/ Location.php, line 70
Class
- Location
- The location a DocBlock occurs within a file.
Namespace
phpDocumentor\Reflection\DocBlockCode
public function setColumnNumber($columnNumber) {
$this->columnNumber = (int) $columnNumber;
return $this;
}