Skip to content

Commit

Permalink
Merge branch '7.1' into 7.2
Browse files Browse the repository at this point in the history
* 7.1:
  do not mix named and positional arguments in data provider definitions
  session names must not be empty
  add missing properties
  fix Contracts directory name in PHPUnit configuration
  [Validator][CidrValidator] Fix error message for `OutOfRangeNetmask` validation
  Passing null to parameter #2 ($subject) of type string is deprecated
  • Loading branch information
xabbuh committed Oct 11, 2024
2 parents c7dabc7 + 3d7bbf0 commit ef0fff2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public function testUseSessionGcMaxLifetimeAsTimeToLive()

public function testDestroySession()
{
$this->storage->open('', '');
$this->storage->open('', 'test');
$this->redisClient->set(self::PREFIX.'id', 'foo');

$this->assertTrue((bool) $this->redisClient->exists(self::PREFIX.'id'));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public function testWriteSessionWithLargeTTL()

public function testDestroySession()
{
$this->storage->open('', '');
$this->storage->open('', 'sid');
$this->memcached
->expects($this->once())
->method('delete')
Expand Down

0 comments on commit ef0fff2

Please sign in to comment.