Skip to content

Commit 93654d8

Browse files
authored
Fix return type error
1 parent f068628 commit 93654d8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Entity/Subdivision.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ public function getName(): string
6666
return $this->subdivision->getName();
6767
}
6868

69-
public function getLocalName(): string
69+
public function getLocalName(): ?string
7070
{
7171
return $this->subdivision->getLocalName();
7272
}
7373

74-
public function getIsoCode(): string
74+
public function getIsoCode(): ?string
7575
{
7676
return $this->subdivision->getIsoCode();
7777
}

0 commit comments

Comments
 (0)