Skip to content

Commit 7696242

Browse files
committed
add symfony uuid type descriptor
1 parent bdb6a83 commit 7696242

File tree

1 file changed

+37
-0
lines changed

1 file changed

+37
-0
lines changed
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
<?php declare(strict_types=1);
2+
3+
namespace PHPStan\Type\Doctrine\Descriptors\Symfony;
4+
5+
use PHPStan\Type\Doctrine\Descriptors\DoctrineTypeDescriptor;
6+
use PHPStan\Type\ObjectType;
7+
use PHPStan\Type\StringType;
8+
use PHPStan\Type\Type;
9+
use Symfony\Bridge\Doctrine\Types\UuidType;
10+
use Symfony\Component\Uid\Uuid;
11+
12+
class UuidTypeDescriptor implements DoctrineTypeDescriptor
13+
{
14+
#[Override]
15+
public function getType(): string
16+
{
17+
return UuidType::class;
18+
}
19+
20+
#[Override]
21+
public function getWritableToPropertyType(): Type
22+
{
23+
return new ObjectType(Uuid::class);
24+
}
25+
26+
#[Override]
27+
public function getWritableToDatabaseType(): Type
28+
{
29+
return new ObjectType(Uuid::class);
30+
}
31+
32+
#[Override]
33+
public function getDatabaseInternalType(): Type
34+
{
35+
return new StringType();
36+
}
37+
}

0 commit comments

Comments
 (0)