dd398ce577
- Created an IdentifierFlattener utility class - Moved the logic for the flatten identifier method into the new utility class - Replaced calls for private flattenIdentifier to use new utility - Added appropriate unit tests
33 lines
502 B
PHP
33 lines
502 B
PHP
<?php
|
|
|
|
namespace Doctrine\Tests\Models\VersionedOneToOne;
|
|
|
|
/**
|
|
* @author Rob Caiger <rob@clocal.co.uk>
|
|
*
|
|
* @Entity
|
|
* @Table(name="second_entity")
|
|
*/
|
|
class SecondRelatedEntity
|
|
{
|
|
/**
|
|
* @Id
|
|
* @Column(name="id", type="integer")
|
|
* @GeneratedValue(strategy="AUTO")
|
|
*/
|
|
public $id;
|
|
|
|
/**
|
|
* @Column(name="name")
|
|
*/
|
|
public $name;
|
|
|
|
/**
|
|
* Version column
|
|
*
|
|
* @Column(type="integer", name="version")
|
|
* @Version
|
|
*/
|
|
public $version;
|
|
}
|