package updates

This commit is contained in:
2018-12-19 23:27:43 -06:00
parent aa1da4d4fb
commit 1ffd21369f
1181 changed files with 51194 additions and 11046 deletions

View File

@@ -74,6 +74,7 @@ class PHP_Token_FunctionTest extends TestCase
$this->assertEquals(17, $this->functions[2]->getLine());
$this->assertEquals(21, $this->functions[3]->getLine());
$this->assertEquals(29, $this->functions[4]->getLine());
$this->assertEquals(37, $this->functions[6]->getLine());
}
/**
@@ -86,6 +87,7 @@ class PHP_Token_FunctionTest extends TestCase
$this->assertEquals(19, $this->functions[2]->getEndLine());
$this->assertEquals(23, $this->functions[3]->getEndLine());
$this->assertEquals(31, $this->functions[4]->getEndLine());
$this->assertEquals(41, $this->functions[6]->getEndLine());
}
/**

View File

@@ -156,7 +156,7 @@ class PHP_Token_InterfaceTest extends TestCase
return;
}
}
$this->fail('Seachring for 2 classes failed');
$this->fail('Searching for 2 classes failed');
}
public function testGetPackageNamespaceIsEmptyForInterfacesThatAreNotWithinNamespaces()

View File

@@ -33,4 +33,10 @@ class Foo{function foo(){}
public function blaz($x, $y)
{
}
public function buzz($foo)
{
echo "${foo}";
return true;
}
}