1
0
mirror of synced 2025-02-03 22:09:26 +03:00

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();
}
}