From f76eca361e2b5f9d5146e176c93f817f99ddab6f Mon Sep 17 00:00:00 2001 From: Hugo_ <55756021+Dhaiven@users.noreply.github.com> Date: Tue, 3 Dec 2024 12:35:04 +0100 Subject: [PATCH] Remove unrelated documentation --- src/Facing.php | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/Facing.php b/src/Facing.php index 7c583fd..ebdc537 100644 --- a/src/Facing.php +++ b/src/Facing.php @@ -117,32 +117,14 @@ public function rotate(Axis $axis, bool $clockwise) : Facing{ return $clockwise ? $rotated : $rotated->opposite(); } - /** - * Rotates the given direction around the Y axis. - * - * @see Facing::rotate() - * @throws \InvalidArgumentException - */ public function rotateY(bool $clockwise) : Facing{ return $this->rotate(Axis::Y, $clockwise); } - /** - * Rotates the given direction around the Z axis. - * - * @see Facing::rotate() - * @throws \InvalidArgumentException - */ public function rotateZ(bool $clockwise) : Facing{ return $this->rotate(Axis::Z, $clockwise); } - /** - * Rotates the given direction around the X axis. - * - * @see Facing::rotate() - * @throws \InvalidArgumentException - */ public function rotateX(bool $clockwise) : Facing{ return $this->rotate(Axis::X, $clockwise); }