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

27 lines
327 B
PHP
Raw Normal View History

2017-08-11 13:46:21 +03:00
<?php
/**
*
* User: Uladzimir Struts <Sysaninster@gmail.com>
* Date: 11.08.2017
* Time: 13:12
*/
namespace Doctrine\Tests\Models\DDC6613;
/**
* @Entity(readOnly=true)
* @Table(name="ddc6613_phone")
*/
class Phone
{
/**
* @Id
* @GeneratedValue
* @Column(type="integer")
*/
public $id;
}