1
0
mirror of synced 2025-01-31 12:32:59 +03:00

18 lines
230 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\Pagination;
/**
* Class User1
* @package Doctrine\Tests\Models\Pagination
*
* @Entity()
*/
class User1 extends User
{
/**
* @Column(type="string")
*/
public $email;
}