Removed comments and requirements relative to php <5.5 (not supported anymore)

This commit is contained in:
Grégoire Pineau 2020-06-30 14:50:28 +02:00
parent b344f6d7db
commit 5c5ea7500e
3 changed files with 0 additions and 6 deletions

View File

@ -437,8 +437,6 @@ class Command
* This feature should be used only when creating a long process command, * This feature should be used only when creating a long process command,
* like a daemon. * like a daemon.
* *
* PHP 5.5+ or the proctitle PECL library is required
*
* @param string $title The process title * @param string $title The process title
* *
* @return $this * @return $this

View File

@ -63,7 +63,6 @@ class DateTimeToHtml5LocalDateTimeTransformerTest extends TestCase
/** /**
* @dataProvider transformProvider * @dataProvider transformProvider
* @requires PHP 5.5
*/ */
public function testTransformDateTimeImmutable($fromTz, $toTz, $from, $to) public function testTransformDateTimeImmutable($fromTz, $toTz, $from, $to)
{ {

View File

@ -115,9 +115,6 @@ class CookieTest extends TestCase
$this->assertEquals($expire->format('U'), $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date'); $this->assertEquals($expire->format('U'), $cookie->getExpiresTime(), '->getExpiresTime() returns the expire date');
} }
/**
* @requires PHP 5.5
*/
public function testConstructorWithDateTimeImmutable() public function testConstructorWithDateTimeImmutable()
{ {
$expire = new \DateTimeImmutable(); $expire = new \DateTimeImmutable();