Skip to content

Commit

Permalink
Apply fixes from StyleCI (#45)
Browse files Browse the repository at this point in the history
Co-authored-by: StyleCI Bot <[email protected]>
  • Loading branch information
lesstif and StyleCIBot authored Feb 12, 2023
1 parent ad58ad0 commit 0b4c489
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Issue/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ public function setReleased(bool $released): static
return $this;
}

public function setReleaseDateAsDateTime(DateTimeInterface $releaseDate, string $format='Y-m-d'): static
public function setReleaseDateAsDateTime(DateTimeInterface $releaseDate, string $format = 'Y-m-d'): static
{
$this->releaseDate = $releaseDate->format($format);

Expand All @@ -98,7 +98,7 @@ public function setUserReleaseDate(string $userReleaseDate): static
return $this;
}

public function setStartDateAsDateTime(\DateTimeInterface $startDate, string $format='Y-m-d'): static
public function setStartDateAsDateTime(\DateTimeInterface $startDate, string $format = 'Y-m-d'): static
{
$this->startDate = $startDate->format($format);

Expand All @@ -112,7 +112,7 @@ public function setStartDateAsString(?string $startDate): static
return $this;
}

public function setUserStartDateAsDateTime(\DateTimeInterface $userStartDate, string $format='Y-m-d'): static
public function setUserStartDateAsDateTime(\DateTimeInterface $userStartDate, string $format = 'Y-m-d'): static
{
$this->userStartDate = $userStartDate->format($format);

Expand Down

0 comments on commit 0b4c489

Please sign in to comment.