Laravel version update

Laravel version update
This commit is contained in:
Manish Verma
2018-08-06 18:48:58 +05:30
parent d143048413
commit 126fbb0255
13678 changed files with 1031482 additions and 778530 deletions

View File

@@ -1,6 +1,6 @@
<?php
/*
* This file is part of the Environment package.
* This file is part of sebastian/environment.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
@@ -8,52 +8,59 @@
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace SebastianBergmann\Environment;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
class ConsoleTest extends PHPUnit_Framework_TestCase
/**
* @covers \SebastianBergmann\Environment\Console
*/
final class ConsoleTest extends TestCase
{
/**
* @var \SebastianBergmann\Environment\Console
*/
private $console;
protected function setUp()
protected function setUp()/*: void*/
{
$this->console = new Console;
}
/**
* @covers \SebastianBergmann\Environment\Console::isInteractive
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testCanDetectIfStdoutIsInteractiveByDefault()
public function testCanDetectIfStdoutIsInteractiveByDefault()/*: void*/
{
$this->assertInternalType('boolean', $this->console->isInteractive());
}
/**
* @covers \SebastianBergmann\Environment\Console::isInteractive
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testCanDetectIfFileDescriptorIsInteractive()
public function testCanDetectIfFileDescriptorIsInteractive()/*: void*/
{
$this->assertInternalType('boolean', $this->console->isInteractive(STDOUT));
}
/**
* @covers \SebastianBergmann\Environment\Console::hasColorSupport
* @uses \SebastianBergmann\Environment\Console::isInteractive
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testCanDetectColorSupport()
public function testCanDetectColorSupport()/*: void*/
{
$this->assertInternalType('boolean', $this->console->hasColorSupport());
}
/**
* @covers \SebastianBergmann\Environment\Console::getNumberOfColumns
* @uses \SebastianBergmann\Environment\Console::isInteractive
* @todo Now that this component is PHP 7-only and uses return type declarations
* this test makes even less sense than before
*/
public function testCanDetectNumberOfColumns()
public function testCanDetectNumberOfColumns()/*: void*/
{
$this->assertInternalType('integer', $this->console->getNumberOfColumns());
}

View File

@@ -0,0 +1,39 @@
<?php
/*
* This file is part of sebastian/environment.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
* 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;
/**
* @covers \SebastianBergmann\Environment\OperatingSystem
*/
final class OperatingSystemTest extends TestCase
{
/**
* @var \SebastianBergmann\Environment\OperatingSystem
*/
private $os;
protected function setUp()/*: void*/
{
$this->os = new OperatingSystem;
}
/**
* @requires OS Linux
*/
public function testFamilyCanBeRetrieved()/*: void*/
{
$this->assertEquals('Linux', $this->os->getFamily());
}
}

View File

@@ -1,6 +1,6 @@
<?php
/*
* This file is part of the Environment package.
* This file is part of sebastian/environment.
*
* (c) Sebastian Bergmann <sebastian@phpunit.de>
*
@@ -8,104 +8,104 @@
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace SebastianBergmann\Environment;
use PHPUnit_Framework_TestCase;
use PHPUnit\Framework\TestCase;
class RuntimeTest extends PHPUnit_Framework_TestCase
/**
* @covers \SebastianBergmann\Environment\Runtime
*/
final class RuntimeTest extends TestCase
{
/**
* @var \SebastianBergmann\Environment\Runtime
*/
private $env;
protected function setUp()
protected function setUp()/*: void*/
{
$this->env = new Runtime;
}
/**
* @covers \SebastianBergmann\Environment\Runtime::canCollectCodeCoverage
* @uses \SebastianBergmann\Environment\Runtime::hasXdebug
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
* @uses \SebastianBergmann\Environment\Runtime::isPHP
* @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()
public function testAbilityToCollectCodeCoverageCanBeAssessed()/*: void*/
{
$this->assertInternalType('boolean', $this->env->canCollectCodeCoverage());
}
/**
* @covers \SebastianBergmann\Environment\Runtime::getBinary
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
* @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()
public function testBinaryCanBeRetrieved()/*: void*/
{
$this->assertInternalType('string', $this->env->getBinary());
}
/**
* @covers \SebastianBergmann\Environment\Runtime::isHHVM
* @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()
public function testCanBeDetected()/*: void*/
{
$this->assertInternalType('boolean', $this->env->isHHVM());
}
/**
* @covers \SebastianBergmann\Environment\Runtime::isPHP
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
* @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()
public function testCanBeDetected2()/*: void*/
{
$this->assertInternalType('boolean', $this->env->isPHP());
}
/**
* @covers \SebastianBergmann\Environment\Runtime::hasXdebug
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
* @uses \SebastianBergmann\Environment\Runtime::isPHP
* @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()
public function testXdebugCanBeDetected()/*: void*/
{
$this->assertInternalType('boolean', $this->env->hasXdebug());
}
/**
* @covers \SebastianBergmann\Environment\Runtime::getNameWithVersion
* @uses \SebastianBergmann\Environment\Runtime::getName
* @uses \SebastianBergmann\Environment\Runtime::getVersion
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
* @uses \SebastianBergmann\Environment\Runtime::isPHP
* @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()
public function testNameAndVersionCanBeRetrieved()/*: void*/
{
$this->assertInternalType('string', $this->env->getNameWithVersion());
}
/**
* @covers \SebastianBergmann\Environment\Runtime::getName
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
* @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()
public function testNameCanBeRetrieved()/*: void*/
{
$this->assertInternalType('string', $this->env->getName());
}
/**
* @covers \SebastianBergmann\Environment\Runtime::getVersion
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
* @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()
public function testVersionCanBeRetrieved()/*: void*/
{
$this->assertInternalType('string', $this->env->getVersion());
}
/**
* @covers \SebastianBergmann\Environment\Runtime::getVendorUrl
* @uses \SebastianBergmann\Environment\Runtime::isHHVM
* @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()
public function testVendorUrlCanBeRetrieved()/*: void*/
{
$this->assertInternalType('string', $this->env->getVendorUrl());
}