Merge branch '4.4' into 5.2

* 4.4:
  Remove always-true requirement
This commit is contained in:
Alexander M. Turek 2021-05-19 23:12:45 +02:00
commit 4bdc0f48cc
2 changed files with 0 additions and 15 deletions

View File

@ -122,9 +122,6 @@ class SessionHandlerProxyTest extends TestCase
$this->proxy->gc(86400);
}
/**
* @requires PHPUnit 5.1
*/
public function testValidateId()
{
$mock = $this->createMock(TestSessionHandler::class);
@ -137,9 +134,6 @@ class SessionHandlerProxyTest extends TestCase
$this->assertTrue($this->proxy->validateId('id'));
}
/**
* @requires PHPUnit 5.1
*/
public function testUpdateTimestamp()
{
$mock = $this->createMock(TestSessionHandler::class);

View File

@ -157,9 +157,6 @@ class PropertyAccessorTest extends TestCase
$this->propertyAccessor->getValue(new UninitializedPrivateProperty(), 'uninitialized');
}
/**
* @requires PHP 7
*/
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousClass()
{
$this->expectException(AccessException::class);
@ -177,9 +174,6 @@ class PropertyAccessorTest extends TestCase
$this->propertyAccessor->getValue($object, 'uninitialized');
}
/**
* @requires PHP 7
*/
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousStdClass()
{
$this->expectException(AccessException::class);
@ -197,9 +191,6 @@ class PropertyAccessorTest extends TestCase
$this->propertyAccessor->getValue($object, 'uninitialized');
}
/**
* @requires PHP 7
*/
public function testGetValueThrowsExceptionIfUninitializedPropertyWithGetterOfAnonymousChildClass()
{
$this->expectException(AccessException::class);