From 3089ed432cab3d5c15fbc7919263b051f41de2d2 Mon Sep 17 00:00:00 2001 From: Kfir Dayan Date: Wed, 13 Dec 2023 09:10:03 +0200 Subject: [PATCH] minor cleaning up --- server/params.php | 17 ----------------- .../urlManipulator/AbstractUrlManipulator.php | 3 --- .../ManipulationResponseInterface.php | 0 3 files changed, 20 deletions(-) delete mode 100644 server/params.php delete mode 100644 server/urlManipulator/ManipulationResponseInterface.php diff --git a/server/params.php b/server/params.php deleted file mode 100644 index 9b495ed..0000000 --- a/server/params.php +++ /dev/null @@ -1,17 +0,0 @@ - \ No newline at end of file diff --git a/server/urlManipulator/AbstractUrlManipulator.php b/server/urlManipulator/AbstractUrlManipulator.php index f8013e9..ea28a8e 100644 --- a/server/urlManipulator/AbstractUrlManipulator.php +++ b/server/urlManipulator/AbstractUrlManipulator.php @@ -5,11 +5,8 @@ namespace urlManipulator; abstract class AbstractUrlManipulator { abstract public function manipulateUrl(string $url); - abstract protected function addParamToUrl(string $url, string $param, string $value); - abstract protected function generateRandomValue(); - abstract protected function getNewParam(array $existingParams); } diff --git a/server/urlManipulator/ManipulationResponseInterface.php b/server/urlManipulator/ManipulationResponseInterface.php deleted file mode 100644 index e69de29..0000000