1
0
mirror of synced 2025-02-09 08:49:26 +03:00
2018-03-22 14:51:02 +01:00

16 lines
233 B
PHP

<?php
namespace Doctrine\Tests\Models\GH7141;
use Doctrine\Common\Collections\ArrayCollection;
class GH7141Article
{
private $tags;
public function __construct()
{
$this->tags = new ArrayCollection();
}
}