Skip to content

Instantly share code, notes, and snippets.

View ucscode's full-sized avatar

Ucscode ucscode

View GitHub Profile
@rela589n
rela589n / source.php
Last active April 9, 2025 15:52
Symfony Doctrine Type Dependency Injection
// Doctrine Type
final class YourCustomType extends Type
{
public const NAME = 'your_custom_type';
private YourCustomService $yourCustomService;
public function setYourCustomService(YourCustomService $yourCustomService): void
{