getStartLine() публичный Метод

Returns the start line number for this source file. For an existing file this value must always be 1, while it can be 0 for a not existing dummy file.
С версии: 0.10.0
public getStartLine ( ) : integer
Результат integer
 /**
  * testGetStartLineReturnsOneWhenSourceFileExists
  *
  * @return void
  */
 public function testGetStartLineReturnsOneWhenSourceFileExists()
 {
     $file = new ASTCompilationUnit(__FILE__);
     $this->assertEquals(1, $file->getStartLine());
 }