Skip to content

Commit

Permalink
Added arguments to interface methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
theriftlab committed Jan 25, 2024
1 parent 6c5f3d1 commit 6723f6d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/Contracts/RadianceInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ interface RadianceInterface
{
public function isNegative(): bool;

public function getDegrees(): float;
public function getDegrees(?int $decimalPlaces = null): float;

public function getMinutes(): float;
public function getMinutes(?int $decimalPlaces = null): float;

public function getSeconds(): float;
public function getSeconds(?int $decimalPlaces = null): float;

public function toDecimal(): float;
public function toDecimal(?int $decimalPlaces = null): float;

public function toRawDecimal(): string;

Expand Down

0 comments on commit 6723f6d

Please sign in to comment.