Skip to content

Commit

Permalink
void return type removal
Browse files Browse the repository at this point in the history
  • Loading branch information
Sofiosko committed Jun 29, 2019
1 parent e4959ab commit b09f55c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Utils/Subjects/Subjects.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function getCacheTime(): int
/**
* @param int|null $cacheTime
*/
public function setCacheTime(int $cacheTime): void
public function setCacheTime(int $cacheTime)
{
$this->cacheTime = $cacheTime;
}
Expand Down Expand Up @@ -156,7 +156,7 @@ public function getCacheFolder(): string
/**
* @param string $cacheFolder
*/
public function setCacheFolder(string $cacheFolder): void
public function setCacheFolder(string $cacheFolder)
{
$this->cacheFolder = $cacheFolder;
}
Expand Down

0 comments on commit b09f55c

Please sign in to comment.