From 0d7039868b3ada11d842389a010c055a218e1056 Mon Sep 17 00:00:00 2001 From: Artem Vasilev Date: Wed, 9 Nov 2022 22:22:09 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BC=D1=83=D1=81=D0=BE=D1=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/AbstractAlgorithmInfo.php | 34 ---------------------------------- src/AlgorithmInfoInterface.php | 8 -------- 2 files changed, 42 deletions(-) delete mode 100755 src/AbstractAlgorithmInfo.php delete mode 100755 src/AlgorithmInfoInterface.php diff --git a/src/AbstractAlgorithmInfo.php b/src/AbstractAlgorithmInfo.php deleted file mode 100755 index 45976e5..0000000 --- a/src/AbstractAlgorithmInfo.php +++ /dev/null @@ -1,34 +0,0 @@ -algorithm = $algorithm; - $this->oid = $oid; - } - - /** - * @param $name - * - * @return string|void - */ - public function __get($name) - { - switch ($name) - { - case 'algorithm': - case 'oid': - return $this->{$name}; - } - } -} \ No newline at end of file diff --git a/src/AlgorithmInfoInterface.php b/src/AlgorithmInfoInterface.php deleted file mode 100755 index 3561204..0000000 --- a/src/AlgorithmInfoInterface.php +++ /dev/null @@ -1,8 +0,0 @@ -