Skip to content

Commit

Permalink
Remove return type declaration to stick with PHP 5 complaint code
Browse files Browse the repository at this point in the history
  • Loading branch information
theseer committed Sep 20, 2023
1 parent 9235b07 commit 214e7d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Config.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public function setHomeDirectory($homeDir) {
$this->homeDirectory = $homeDir;
}

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

Expand Down

0 comments on commit 214e7d8

Please sign in to comment.