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 OperatingSystemTest extends TestCase
*/
private $os;
protected function setUp()/*: void*/
protected function setUp(): void
{
$this->os = new OperatingSystem;
}
@@ -32,7 +29,7 @@ final class OperatingSystemTest extends TestCase
/**
* @requires OS Linux
*/
public function testFamilyCanBeRetrieved()/*: void*/
public function testFamilyCanBeRetrieved(): void
{
$this->assertEquals('Linux', $this->os->getFamily());
}