1
0
mirror of synced 2025-03-23 00:13:50 +03:00

21 lines
272 B
PHP
Raw Normal View History

<?php
namespace Doctrine\Tests\Models\Routing;
/**
* @Entity
*/
class RoutingLocation
{
/**
* @Id
* @generatedValue(strategy="AUTO")
* @Column(type="integer")
*/
public $id;
/**
* @Column(type="string")
*/
public $name;
}