Skip to content

Commit

Permalink
Fix some code-style issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlackPlague committed Feb 11, 2022
1 parent d74b919 commit 00717e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/entity/Location.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ class Location extends Position{
/** @var float */
public $yaw;
/** @var float */
public float $headYaw;
public $headYaw;
/** @var float */
public $pitch;

Expand Down Expand Up @@ -66,7 +66,7 @@ public function getYaw() : float{
return $this->yaw;
}

public function getHeadYaw(): float
public function getHeadYaw() : float
{
return $this->headYaw;
}
Expand Down

0 comments on commit 00717e1

Please sign in to comment.