How to reproduce
Create the following class and traits using doctrine/orm:
namespace App\Behaviour;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Embeddable()
*/
class State
{
}
namespace App\Behaviour;
use Doctrine\ORM\Mapping as ORM;
trait StateMachineTrait
{
/**
* @ORM\Embedded(class=State::class)
*/
private ?State $state;
}
namespace App\Entity;
use App\Behaviour\StateMachineTrait;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Entity
*/
class Article
{
use StateMachineTrait;
}
Trying to create a mapping for this setup will throw an MappingException:
Class 'App\Entity\State' does not exist