From 89ce353a1fbd73e195c9de16deb9f565a457f874 Mon Sep 17 00:00:00 2001 From: Patrick Date: Tue, 18 Jan 2022 00:27:36 +0100 Subject: [PATCH] Update Identifiable.php --- tests/Fixtures/Identifiable.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Fixtures/Identifiable.php b/tests/Fixtures/Identifiable.php index 7768a2d..e2d498f 100644 --- a/tests/Fixtures/Identifiable.php +++ b/tests/Fixtures/Identifiable.php @@ -34,7 +34,7 @@ class Identifiable implements InstanceIdentifier * * @return int|string */ - public function getInstanceIdentifier($options = null) + public function getInstanceIdentifier() { return $this->identifier; } @@ -44,7 +44,7 @@ class Identifiable implements InstanceIdentifier * * @return int|string */ - public function getInstanceGlobalDiscount($options = null) + public function getInstanceGlobalDiscount() { return $this->discountRate; }