1
0
mirror of synced 2025-01-18 22:41:43 +03:00

32 lines
498 B
PHP
Raw Normal View History

2012-06-01 14:57:01 -03:00
<?php
2012-06-04 16:56:46 -03:00
namespace Doctrine\Tests\Models\Quote;
2012-06-01 14:57:01 -03:00
/**
* @Entity
2012-06-04 16:56:46 -03:00
* @Table(name="`ddc-1719-simple-entity`")
2012-06-01 14:57:01 -03:00
*/
2012-06-04 16:56:46 -03:00
class SimpleEntity
2012-06-01 14:57:01 -03:00
{
/**
* @Id
2012-06-04 16:56:46 -03:00
* @Column(type="integer", name="`simple-entity-id`")
2012-06-01 14:57:01 -03:00
* @GeneratedValue(strategy="AUTO")
*/
public $id;
/**
2012-06-04 16:56:46 -03:00
* @Column(type="string", name="`simple-entity-value`")
2012-06-01 14:57:01 -03:00
*/
public $value;
/**
* @param string $value
*/
public function __construct($value)
{
$this->value = $value;
}
}