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

@@ -1,4 +1,4 @@
<?php
<?php declare(strict_types=1);
/*
* This file is part of sebastian/environment.
*
@@ -7,9 +7,6 @@
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace SebastianBergmann\Environment;
use PHPUnit\Framework\TestCase;
@@ -24,7 +21,7 @@ final class RuntimeTest extends TestCase
*/
private $env;
protected function setUp()/*: void*/
protected function setUp(): void
{
$this->env = new Runtime;
}
@@ -33,7 +30,7 @@ final class RuntimeTest extends TestCase
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testAbilityToCollectCodeCoverageCanBeAssessed()/*: void*/
public function testAbilityToCollectCodeCoverageCanBeAssessed(): void
{
$this->assertInternalType('boolean', $this->env->canCollectCodeCoverage());
}
@@ -42,7 +39,7 @@ final class RuntimeTest extends TestCase
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testBinaryCanBeRetrieved()/*: void*/
public function testBinaryCanBeRetrieved(): void
{
$this->assertInternalType('string', $this->env->getBinary());
}
@@ -51,7 +48,7 @@ final class RuntimeTest extends TestCase
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testCanBeDetected()/*: void*/
public function testCanBeDetected(): void
{
$this->assertInternalType('boolean', $this->env->isHHVM());
}
@@ -60,7 +57,7 @@ final class RuntimeTest extends TestCase
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testCanBeDetected2()/*: void*/
public function testCanBeDetected2(): void
{
$this->assertInternalType('boolean', $this->env->isPHP());
}
@@ -69,7 +66,7 @@ final class RuntimeTest extends TestCase
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testXdebugCanBeDetected()/*: void*/
public function testXdebugCanBeDetected(): void
{
$this->assertInternalType('boolean', $this->env->hasXdebug());
}
@@ -78,7 +75,7 @@ final class RuntimeTest extends TestCase
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testNameAndVersionCanBeRetrieved()/*: void*/
public function testNameAndVersionCanBeRetrieved(): void
{
$this->assertInternalType('string', $this->env->getNameWithVersion());
}
@@ -87,7 +84,7 @@ final class RuntimeTest extends TestCase
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testNameCanBeRetrieved()/*: void*/
public function testNameCanBeRetrieved(): void
{
$this->assertInternalType('string', $this->env->getName());
}
@@ -96,7 +93,7 @@ final class RuntimeTest extends TestCase
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testVersionCanBeRetrieved()/*: void*/
public function testVersionCanBeRetrieved(): void
{
$this->assertInternalType('string', $this->env->getVersion());
}
@@ -105,7 +102,7 @@ final class RuntimeTest extends TestCase
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testVendorUrlCanBeRetrieved()/*: void*/
public function testVendorUrlCanBeRetrieved(): void
{
$this->assertInternalType('string', $this->env->getVendorUrl());
}