#1086 - Minor CS fixes applied to the test case (simplifying)
This commit is contained in:
parent
a0165858c4
commit
40849f8ae1
1 changed files with 4 additions and 15 deletions
|
@ -43,9 +43,7 @@ class DDC3223Test extends OrmFunctionalTestCase
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/** @Entity @Table(name="ddc3223_journalist") */
|
||||||
* @Entity @Table(name="ddc3223_journalist")
|
|
||||||
*/
|
|
||||||
class Journalist extends Participant
|
class Journalist extends Participant
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
@ -60,15 +58,10 @@ class Journalist extends Participant
|
||||||
*/
|
*/
|
||||||
class Participant
|
class Participant
|
||||||
{
|
{
|
||||||
/**
|
/** @Id @Column(type="integer") @GeneratedValue */
|
||||||
* @Id @Column(type="integer")
|
|
||||||
* @GeneratedValue
|
|
||||||
*/
|
|
||||||
public $id;
|
public $id;
|
||||||
|
|
||||||
/**
|
/** @ManyToOne(targetEntity="ProfileStatus") */
|
||||||
* @ManyToOne(targetEntity="ProfileStatus")
|
|
||||||
*/
|
|
||||||
public $profileStatus;
|
public $profileStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -82,10 +75,7 @@ class Participant
|
||||||
*/
|
*/
|
||||||
class Status
|
class Status
|
||||||
{
|
{
|
||||||
/**
|
/** @Id @Column(type="integer") @GeneratedValue(strategy="AUTO") */
|
||||||
* @Id @Column(type="integer")
|
|
||||||
* @GeneratedValue(strategy="AUTO")
|
|
||||||
*/
|
|
||||||
private $id;
|
private $id;
|
||||||
|
|
||||||
public function getId()
|
public function getId()
|
||||||
|
@ -99,5 +89,4 @@ class Status
|
||||||
*/
|
*/
|
||||||
class ProfileStatus extends Status
|
class ProfileStatus extends Status
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue