From 4d41d3218eb3ee53df300e00b6cbe22a6710bc81 Mon Sep 17 00:00:00 2001 From: flashwave Date: Wed, 31 Jul 2024 19:10:26 +0000 Subject: [PATCH] Moved Bencode implementation into its own namespace. --- VERSION | 2 +- src/{Serialisation => Bencode}/Bencode.php | 4 ++-- src/{Serialisation => Bencode}/IBencodeSerialisable.php | 4 ++-- src/Http/Content/BencodedContent.php | 6 +++--- src/Http/ContentHandling/BencodeContentHandler.php | 4 ++-- tests/BencodeTest.php | 2 +- 6 files changed, 11 insertions(+), 11 deletions(-) rename src/{Serialisation => Bencode}/Bencode.php (99%) rename src/{Serialisation => Bencode}/IBencodeSerialisable.php (87%) diff --git a/VERSION b/VERSION index c5262af..87236e4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.2407.311904 +0.2407.311910 diff --git a/src/Serialisation/Bencode.php b/src/Bencode/Bencode.php similarity index 99% rename from src/Serialisation/Bencode.php rename to src/Bencode/Bencode.php index 4aa93e9..77963de 100644 --- a/src/Serialisation/Bencode.php +++ b/src/Bencode/Bencode.php @@ -1,9 +1,9 @@