first commit

This commit is contained in:
2022-05-21 12:32:17 +02:00
parent 7043b0900e
commit 98e1f085c0
22 changed files with 3431 additions and 2 deletions

35
src/Entity/Entity1.php Normal file
View File

@ -0,0 +1,35 @@
<?php
namespace App\Entity;
use App\Repository\Entity1Repository;
use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: Entity1Repository::class)]
class Entity1
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column(type: 'integer')]
private $id;
#[ORM\Column(type: 'string', length: 255)]
private $name;
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
}