1
0
mirror of synced 2025-01-31 20:41:44 +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;
}