composer update

This commit is contained in:
Manish Verma
2018-12-05 10:50:52 +05:30
parent 9eabcacfa7
commit 4addd1e9c6
3328 changed files with 156676 additions and 138988 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;
}
}