first commit

This commit is contained in:
2024-07-09 11:31:28 +02:00
commit cc835b3692
9 changed files with 461 additions and 0 deletions

16
src/Entity/Entity.php Normal file
View File

@@ -0,0 +1,16 @@
<?php
namespace Bluesquare\Pilot\Entity;
abstract class Entity
{
public function __construct(protected $slug = null)
{
}
public function slug()
{
return $this->slug;
}
}