function Location::__construct
Same name in this branch
- 11.1.x vendor/google/protobuf/src/Google/Protobuf/Internal/SourceCodeInfo/Location.php \Google\Protobuf\Internal\SourceCodeInfo\Location::__construct()
Initializes the location for an element using its line number in the file and optionally the column number.
File
-
vendor/
phpdocumentor/ reflection-common/ src/ Location.php, line 32
Class
- Location
- The location where an element occurs within a file.
Namespace
phpDocumentor\ReflectionCode
public function __construct(int $lineNumber, int $columnNumber = 0) {
$this->lineNumber = $lineNumber;
$this->columnNumber = $columnNumber;
}