1
0
mirror of synced 2025-02-03 13:59:27 +03:00
doctrine2/tests/Doctrine/Tests/Models/Issue5989/Issue5989Employee.php

28 lines
425 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\Issue5989;
/**
* @Entity
* @Table(name="issue5989_employees")
*/
class Issue5989Employee extends Issue5989Person
{
/**
* @column(type="simple_array", nullable=true)
*
* @var array
*/
private $tags;
public function getTags()
{
return $this->tags;
}
public function setTags(array $tags)
{
$this->tags = $tags;
}
}