From 3063a6b5a291551456066391036387bea077b0ca Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sun, 22 Dec 2019 11:25:36 +0100 Subject: [PATCH] cplx still not fully implemented but fixed bug --- Math/Number/Complex.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Math/Number/Complex.php b/Math/Number/Complex.php index 8965d90bc..c9316307c 100644 --- a/Math/Number/Complex.php +++ b/Math/Number/Complex.php @@ -181,7 +181,7 @@ final class Complex */ public function powComplex(self $value) : self { - + return $this; } /** @@ -215,7 +215,7 @@ final class Complex */ public function powScalar($value) : self { - + return $this; } /**