Skip to content

Commit e8cbed4

Browse files
committed
Revert symfony/uuid
1 parent 1fa18ef commit e8cbed4

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ jobs:
161161
if: "${{ matrix.remove-optional-dependencies }}"
162162
run: |
163163
composer remove --no-update friendsofphp/proxy-manager-lts symfony/var-exporter
164-
composer remove --no-update --dev symfony/cache doctrine/orm doctrine/annotations symfony/uid
164+
composer remove --no-update --dev symfony/cache doctrine/orm doctrine/annotations
165165
composer remove --no-update --dev doctrine/coding-standard phpstan/phpstan phpstan/phpstan-deprecation-rule phpstan/phpstan-phpunit
166166
167167
- name: "Install dependencies with Composer"

tests/Tests/Functional/ReadOnlyPropertiesTest.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ public function testReadOnlyDocument(): void
3636
class ReadOnlyProperties
3737
{
3838
#[Id]
39+
// @phpstan-ignore property.uninitializedReadonly (initialized by reflection)
3940
public readonly string $id;
4041

4142
#[Field]

tests/Tests/Types/BinaryUuidTypeTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,10 @@
77
use Doctrine\ODM\MongoDB\Types\Type;
88
use InvalidArgumentException;
99
use MongoDB\BSON\Binary;
10-
use PHPUnit\Framework\Attributes\RequiresMethod;
1110
use PHPUnit\Framework\TestCase;
1211
use Symfony\Component\Uid\UuidV4;
1312
use Throwable;
1413

15-
#[RequiresMethod(UuidV4::class, '__construct')]
1614
class BinaryUuidTypeTest extends TestCase
1715
{
1816
public function testConvertToDatabaseValue(): void

0 commit comments

Comments
 (0)