1
0
mirror of synced 2025-01-10 11:07:10 +03:00
doctrine2/tests/Doctrine/Tests/Models/DDC2775/Role.php

35 lines
722 B
PHP
Raw Normal View History

2013-11-04 15:40:51 +04:00
<?php
namespace Doctrine\Tests\Models\DDC2775;
/**
* @Entity
* @InheritanceType("JOINED")
* @DiscriminatorColumn(name="role_type", type="string")
* @DiscriminatorMap({"admin"="AdminRole"})
*/
abstract class Role
{
/**
* @Id @Column(type="integer")
* @GeneratedValue
*/
2013-12-14 22:57:53 +04:00
public $id;
2013-11-04 15:40:51 +04:00
/**
* @ManyToOne(targetEntity="User", inversedBy="roles")
*/
2013-12-14 22:57:53 +04:00
public $user;
2013-11-04 15:40:51 +04:00
/**
* @OneToMany(targetEntity="Authorization", mappedBy="role", cascade={"all"}, orphanRemoval=true)
*/
public $authorizations;
public function addAuthorization(Authorization $authorization)
{
$this->authorizations[] = $authorization;
2013-12-14 22:57:53 +04:00
$authorization->role = $this;
2013-11-04 15:40:51 +04:00
}
}