This commit is contained in:
Maxime 2024-11-12 13:28:17 +01:00
parent f38719837e
commit bdfcba39da
1 changed files with 6 additions and 2 deletions

View File

@ -4,9 +4,13 @@ namespace Bluesquare\Pilot\Entity;
abstract class Entity abstract class Entity
{ {
public function __construct(protected $slug = null) protected $slug = null;
{
public function __construct($slug = null)
{
if (! is_null($slug)) {
$this->slug = $slug;
}
} }
public function slug() public function slug()