Skip to content

Commit

Permalink
minor fix for location item
Browse files Browse the repository at this point in the history
  • Loading branch information
frets1700 committed Apr 3, 2019
1 parent 3857a43 commit 25b4421
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Entities/Location.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public function __construct(array $location)
$this->displayName = $location['DisplayName'];
}

public function getLocationDisplayName() : string
public function getLocationDisplayName() : ?string
{
return $this->displayName;
}
Expand Down
2 changes: 1 addition & 1 deletion src/Interfaces/Entity/LocationInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@

interface LocationInterface
{
public function getLocationDisplayName();
public function getLocationDisplayName() : ?string;
}

0 comments on commit 25b4421

Please sign in to comment.