Ajout dans la todolist.

This commit is contained in:
Mysaa 2023-02-21 16:55:20 +01:00
parent 3f28676318
commit afae71919e
Signed by: Mysaa
GPG Key ID: 7054D5D6A90F084F
2 changed files with 4 additions and 6 deletions

View File

@ -29,5 +29,7 @@ Your installation should be complete, you can run `symfony local:server:start` t
## Todolist
- [x] Make the base project
- [ ] Hide password from configfile using symfony vaults
- [ ] (Automatic) API documentation
- [x] Hide password from configfile using symfony vaults
- [x] API documentation
- [ ] Use a representation superclass (both db and php)
- [ ] Use a php enum and a pgsql enum for place type

View File

@ -8,10 +8,6 @@ use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
#[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
{
#[ORM\Id]