示例#1
0
 /**
  * Returns the line number where the property declaration ends.
  *
  * @return integer
  * @since 0.9.6
  */
 public function getEndLine()
 {
     return $this->variableDeclarator->getEndLine();
 }
 /**
  * testVariableDeclaratorHasExpectedEndLine
  *
  * @param PHP_Depend_Code_ASTVariableDeclarator $declarator
  *
  * @return void
  * @depends testVariableDeclarator
  */
 public function testVariableDeclaratorHasExpectedEndLine($declarator)
 {
     $this->assertEquals(4, $declarator->getEndLine());
 }