1
0
Fork 0
mirror of synced 2025-04-01 20:36:14 +03:00
doctrine2/tests/Doctrine/Tests/Models/GH7316/GH7316Article.php

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