1
0
mirror of synced 2025-02-03 05:49:25 +03:00

13 lines
211 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\Hydration;
/** @Entity */
class SimpleEntity
{
const CLASSNAME = __CLASS__;
/** @Id @Column(type="integer") @GeneratedValue(strategy="AUTO") */
public $id;
}