diff --git a/Models/NullProfile.php b/Models/NullProfile.php index 2d9bff6..8531373 100644 --- a/Models/NullProfile.php +++ b/Models/NullProfile.php @@ -24,4 +24,15 @@ namespace Modules\Profile\Models; */ final class NullProfile extends Profile { + /** + * Constructor + * + * @param int $id Model id + * + * @since 1.0.0 + */ + public function __construct(int $id = 0) + { + $this->id = $id; + } }