Actualización

This commit is contained in:
Xes
2025-04-10 12:24:57 +02:00
parent 8969cc929d
commit 45420b6f0d
39760 changed files with 4303286 additions and 0 deletions

View File

@@ -0,0 +1,43 @@
<?php
namespace Ddeboer\DataImport\Tests\Fixtures\Entity;
class TestEntity
{
private $firstProperty;
private $secondProperty;
private $firstAssociation;
public function getFirstProperty()
{
return $this->firstProperty;
}
public function setFirstProperty($firstProperty)
{
$this->firstProperty = $firstProperty;
}
public function getSecondProperty()
{
return $this->secondProperty;
}
public function setSecondProperty($secondProperty)
{
$this->secondProperty = $secondProperty;
}
public function getFirstAssociation()
{
return $this->firstAssociation;
}
public function setFirstAssociation($firstAssociation)
{
$this->firstAssociation = $firstAssociation;
}
}

View File

@@ -0,0 +1,30 @@
<?php
namespace Ddeboer\DataImport\Tests\Fixtures\Entity;
/**
* @Entity()
*/
class User
{
/** @Id @GeneratedValue @Column(type="integer") **/
private $id;
/** @Column(type="string") */
private $username;
public function getId()
{
return $this->id;
}
public function getUsername()
{
return $this->username;
}
public function setUsername($username)
{
$this->username = $username;
}
}