1
0
mirror of synced 2025-01-18 22:41:43 +03:00

42 lines
743 B
PHP
Raw Normal View History

2012-06-04 16:56:46 -03:00
<?php
namespace Doctrine\Tests\Models\Quote;
/**
* @Entity
* @Table(name="`quote-group`")
*/
class Group
{
/**
* @Id
* @GeneratedValue
* @Column(type="integer", name="`group-id`")
*/
public $id;
/**
* @Column(name="`group-name`")
*/
public $name;
2012-06-05 17:10:44 -03:00
/**
2012-06-06 13:14:20 -03:00
* @var Group
*
2012-06-05 17:10:44 -03:00
* @ManyToOne(targetEntity="Group", cascade={"persist"})
* @JoinColumn(name="`parent-id`", referencedColumnName="`group-id`")
*/
public $parent;
2012-06-04 16:56:46 -03:00
/**
* @ManyToMany(targetEntity="User", mappedBy="groups")
*/
public $users;
2012-06-05 17:10:44 -03:00
public function __construct($name = null, Group $parent = null)
{
$this->name = $name;
$this->parent = $parent;
}
2012-06-04 16:56:46 -03:00
}