You are here

public function Location::__construct in Zircon Profile 8

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

File

vendor/phpdocumentor/reflection-docblock/src/phpDocumentor/Reflection/DocBlock/Location.php, line 30

Class

Location
The location a DocBlock occurs within a file.

Namespace

phpDocumentor\Reflection\DocBlock

Code

public function __construct($lineNumber = 0, $columnNumber = 0) {
  $this
    ->setLineNumber($lineNumber)
    ->setColumnNumber($columnNumber);
}