34 lines
525 B
PHP
34 lines
525 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\Cache;
|
|
|
|
/**
|
|
* @Entity
|
|
* @Table("cache_client_address")
|
|
*/
|
|
class Address
|
|
{
|
|
/**
|
|
* @Id
|
|
* @GeneratedValue
|
|
* @Column(type="integer")
|
|
*/
|
|
public $id;
|
|
|
|
/**
|
|
* @JoinColumn(name="person_id", referencedColumnName="id")
|
|
* @OneToOne(targetEntity="Person", inversedBy="address")
|
|
*/
|
|
public $person;
|
|
|
|
/**
|
|
* @Column
|
|
*/
|
|
public $location;
|
|
|
|
public function __construct($location)
|
|
{
|
|
$this->location = $location;
|
|
}
|
|
}
|