From 00717e15d4762ca93ad4a991062b343e2e75a14d Mon Sep 17 00:00:00 2001 From: Shaheryar Sohail Date: Fri, 11 Feb 2022 07:25:52 -0500 Subject: [PATCH] Fix some code-style issues. --- src/entity/Location.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/entity/Location.php b/src/entity/Location.php index 36be9c94591..f07ea95008a 100644 --- a/src/entity/Location.php +++ b/src/entity/Location.php @@ -32,7 +32,7 @@ class Location extends Position{ /** @var float */ public $yaw; /** @var float */ - public float $headYaw; + public $headYaw; /** @var float */ public $pitch; @@ -66,7 +66,7 @@ public function getYaw() : float{ return $this->yaw; } - public function getHeadYaw(): float + public function getHeadYaw() : float { return $this->headYaw; }