Skip to content

Commit e9c06ad

Browse files
committed
Merge branch '6.0' into 6.1
* 6.0: Use mb_convert_encoding instead of utf8_decode [SecurityBundle] Remove forgotten unused code Minor @requires function tests cleanup [FrameworkBundle] Always add CacheCollectorPass Fix "Notice: Undefined index: headers" in messenger with Oracle [String] Fix ansi escape sequences regex Indicate support for doctrine/persistence 3 [Routing] fix router base url when default uri has trailing slash Replace deprecated String.prototype.substr()
2 parents 307823c + 0f53206 commit e9c06ad

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

Tests/IdGenerator/UlidGeneratorTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ public function testUlidCanBeGenerated()
2929
$this->assertTrue(Ulid::isValid($ulid));
3030
}
3131

32-
/**
33-
* @requires function \Symfony\Component\Uid\Factory\UlidFactory::create
34-
*/
3532
public function testUlidFactory()
3633
{
3734
$ulid = new Ulid('00000000000000000000000000');

Tests/IdGenerator/UuidGeneratorTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
use Symfony\Component\Uid\UuidV4;
1919
use Symfony\Component\Uid\UuidV6;
2020

21-
/**
22-
* @requires function \Symfony\Component\Uid\Factory\UuidFactory::create
23-
*/
2421
class UuidGeneratorTest extends TestCase
2522
{
2623
public function testUuidCanBeGenerated()

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"require": {
1919
"php": ">=8.1",
2020
"doctrine/event-manager": "~1.0",
21-
"doctrine/persistence": "^2",
21+
"doctrine/persistence": "^2|^3",
2222
"symfony/deprecation-contracts": "^2.1|^3",
2323
"symfony/polyfill-ctype": "~1.8",
2424
"symfony/polyfill-mbstring": "~1.0",

0 commit comments

Comments
 (0)