16 lines
233 B
PHP
16 lines
233 B
PHP
|
<?php
|
||
|
|
||
|
namespace Doctrine\Tests\Models\GH7316;
|
||
|
|
||
|
use Doctrine\Common\Collections\ArrayCollection;
|
||
|
|
||
|
class GH7316Article
|
||
|
{
|
||
|
private $tags;
|
||
|
|
||
|
public function __construct()
|
||
|
{
|
||
|
$this->tags = new ArrayCollection();
|
||
|
}
|
||
|
}
|