jdecool/doctrine-nullable-embeddable

Implement nullable embeddables in Doctrine entities

dev-main 2024-05-10 19:17 UTC

This package is auto-updated.

Last update: 2025-04-04 20:44:14 UTC


README

Build Status Latest Stable Version

Implement nullable embeddables in Doctrine entities

Install it

Install the extension using Composer:

$ composer require jdecool/doctrine-nullable-embeddable

Available attributes

  • JDecool\DoctrineNullableEmbeddable\Attribute\NullableEmbeddable
  • JDecool\DoctrineNullableEmbeddable\Attribute\NullableEmbedded

Register the mapping listener

Nullable Doctrine embeddables can be automatically managed by reigster the JDecool\DoctrineNullableEmbeddable\Listener\MappingListener listener class.

$configuration = new Configuration();
// ...

$entityManager = EntityManager::create(['driver' => 'pdo_sqlite', 'memory' => true], $configuration);

$eventManager = $entityManager->getEventManager();
$eventManager->addEventListener(['loadClassMetadata'], new MappingListener());

Register entity listener manually

Or you can manually register the JDecool\DoctrineNullableEmbeddable\Listener\NullableEmbeddableListener on an entity.