This commit is contained in:
Xes
2025-08-14 22:41:49 +02:00
parent 2de81ccc46
commit 8ce45119b6
39774 changed files with 4309466 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;
}
}

View File

@@ -0,0 +1 @@
50,123,"Description"
Can't render this file because it contains an unexpected character in line 1 and column 20.

View File

@@ -0,0 +1,4 @@
id,number,description
50,123,"Description"
6,456,"Another description"
7,7890,"Some more info"
1 id number description
2 50 123 Description
3 6 456 Another description
4 7 7890 Some more info

Binary file not shown.

View File

@@ -0,0 +1,2 @@
id,description,description,description,details,details,last
50,"First","Second","Third","Details1","Details2","Last one"
1 id description description description details details last
2 50 First Second Third Details1 Details2 Last one

View File

@@ -0,0 +1,5 @@
id,number,description
50,123,"Description"
123,test
7,7890,Some more info,"too many columns"
123,66,Valid
1 id number description
2 50 123 Description
3 123 test
4 7 7890 Some more info too many columns
5 123 66 Valid

View File

@@ -0,0 +1 @@
50,123,"Description"
Can't render this file because it contains an unexpected character in line 1 and column 20.

View File

@@ -0,0 +1,4 @@
id,number,description
50,123,"Description"
6,456
7,7890,"Some more info"
1 id number description
2 50 123 Description
3 6 456
4 7 7890 Some more info

View File

@@ -0,0 +1,4 @@
id,number,description
50,123,"Description"
6,456,"Another description","Some more info"
7,7890,"Yet another description"
1 id number description
2 50 123 Description
3 6 456 Another description Some more info
4 7 7890 Yet another description

Binary file not shown.

View File

@@ -0,0 +1,3 @@
50,123,"Description"
6,456,"Another description"
7,7890,"Some more info"
1 50 123 Description
2 6 456 Another description
3 7 7890 Some more info

View File

@@ -0,0 +1,5 @@
50,123,"Description"
6,"strictly invalid"
7,7890,"Some more info"
3,230,"Yet more info","Even more info"
"strictly invalid"
1 50 123 Description
2 6 strictly invalid
3 7 7890 Some more info
4 3 230 Yet more info Even more info
5 strictly invalid