Laravel 5.6 updates
Travis config update Removed HHVM script as Laravel no longer support HHVM after releasing 5.3
This commit is contained in:
@@ -84,9 +84,6 @@ class ArgumentMetadataFactoryTest extends TestCase
|
||||
), $arguments);
|
||||
}
|
||||
|
||||
/**
|
||||
* @requires PHP 5.6
|
||||
*/
|
||||
public function testVariadicSignature()
|
||||
{
|
||||
$arguments = $this->factory->createArgumentMetadata(array(new VariadicController(), 'action'));
|
||||
@@ -97,9 +94,6 @@ class ArgumentMetadataFactoryTest extends TestCase
|
||||
), $arguments);
|
||||
}
|
||||
|
||||
/**
|
||||
* @requires PHP 7.0
|
||||
*/
|
||||
public function testBasicTypesSignature()
|
||||
{
|
||||
$arguments = $this->factory->createArgumentMetadata(array(new BasicTypesController(), 'action'));
|
||||
@@ -111,9 +105,6 @@ class ArgumentMetadataFactoryTest extends TestCase
|
||||
), $arguments);
|
||||
}
|
||||
|
||||
/**
|
||||
* @requires PHP 7.1
|
||||
*/
|
||||
public function testNullableTypesSignature()
|
||||
{
|
||||
$arguments = $this->factory->createArgumentMetadata(array(new NullableController(), 'action'));
|
||||
|
Reference in New Issue
Block a user