getEndLine() public method

Returns the start line number for this source file. For an existing file this value must always be greater 0, while it can be 0 for a not existing dummy file.
Since: 0.10.0
public getEndLine ( ) : integer
return integer
 /**
  * testGetEndLineReturnsOneWhenSourceFileExists
  *
  * @return void
  */
 public function testGetEndLineReturnsOneWhenSourceFileExists()
 {
     $file = new ASTCompilationUnit(__FILE__);
     $this->assertEquals(362, $file->getEndLine());
 }