diff --git a/src/Entity/Entity.php b/src/Entity/Entity.php index bbf87aa..5b50d95 100644 --- a/src/Entity/Entity.php +++ b/src/Entity/Entity.php @@ -4,9 +4,13 @@ namespace Bluesquare\Pilot\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()