msgphp / symfony-demo-app

A Symfony demo application with basic user management
https://github.com/msgphp/msgphp
MIT License
0 stars 0 forks source link

Switch Eav\Attribute to use string identifiers #73

Closed ro0NL closed 3 years ago

ro0NL commented 5 years ago

Instead of

new Attribute(
  MsgPhp\Eav\Infra\Uuid\AttributeId::fromValue(
    Attribute::GOOGLE_OAUTH_ID
  )
)

consider

new Attribute(
  MsgPhp\Eav\AttributeId::fromValue('google_oauth_id')
)