Ajout dans la todolist.

This commit is contained in:
2023-02-21 16:55:20 +01:00
parent 3f28676318
commit afae71919e
2 changed files with 4 additions and 6 deletions
+4 -2
View File
@@ -29,5 +29,7 @@ Your installation should be complete, you can run `symfony local:server:start` t
## Todolist ## Todolist
- [x] Make the base project - [x] Make the base project
- [ ] Hide password from configfile using symfony vaults - [x] Hide password from configfile using symfony vaults
- [ ] (Automatic) API documentation - [x] API documentation
- [ ] Use a representation superclass (both db and php)
- [ ] Use a php enum and a pgsql enum for place type
-4
View File
@@ -8,10 +8,6 @@ use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM; use Doctrine\ORM\Mapping as ORM;
#[ORM\Entity(repositoryClass: PlaceRepository::class)] #[ORM\Entity(repositoryClass: PlaceRepository::class)]
// #[ORM\MappedSuperclass]
// #[ORM\InheritanceType("JOINED")]
// #[ORM\DiscriminatorColumn(name: "type", type: "string")]
// #[ORM\DiscriminatorMap(["room" => Room::class, "corridor" => Corridor::class])]
class Place class Place
{ {
#[ORM\Id] #[ORM\Id]