This commit is contained in:
Dennis Eichhorn 2020-03-05 20:35:58 +01:00
parent 986840730c
commit 6bcc6c2727

View File

@ -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;
}
}