You've already forked pilot-sdk
first commit
This commit is contained in:
16
src/Entity/Entity.php
Normal file
16
src/Entity/Entity.php
Normal 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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user