1 Commits
1.1 ... 1.2

Author SHA1 Message Date
bdfcba39da fix slug 2024-11-12 13:28:17 +01:00

View File

@@ -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()