Skip to content

Commit

Permalink
fix: remove return types
Browse files Browse the repository at this point in the history
  • Loading branch information
antoinemetifeu committed Oct 18, 2024
1 parent 04d9f6e commit 13e449c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Identity/Domain/Identity.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ public function verify()
// $this->record(new IdentityVerified($this->id));
}

public function shopId(): string
public function shopId()
{
return $this->shopId;
}

public function cloudShopId(): string
public function cloudShopId()
{
return $this->cloudShopId;
}
Expand Down

0 comments on commit 13e449c

Please sign in to comment.