Home
last modified time | relevance | path

Searched refs:startingLine (Results 1 – 2 of 2) sorted by relevance

/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/src/DocBlock/Tags/
H A DSource.php29 private $startingLine = 1; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Source
34 public function __construct($startingLine, $lineCount = null, Description $description = null) argument
36 Assert::integerish($startingLine);
39 $this->startingLine = (int)$startingLine;
52 $startingLine = 1;
58 $startingLine = (int)$matches[1];
66 … return new static($startingLine, $lineCount, $descriptionFactory->create($description, $context));
77 return $this->startingLine;
93 return $this->startingLine
H A DExample.php38 private $startingLine; variable in phpDocumentor\\Reflection\\DocBlock\\Tags\\Example
45 public function __construct($filePath, $isURI, $startingLine, $lineCount, $description) argument
48 Assert::integer($startingLine);
49 Assert::greaterThanEq($startingLine, 0);
52 $this->startingLine = $startingLine;
99 $startingLine = 1;
108 $startingLine = (int)$contentMatches[1];
122 $startingLine,
166 return $this->startingLine;