From 2c1f6a0490709d87d509791f5ec81bfb52503880 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Tue, 9 Mar 2021 20:09:11 +0100 Subject: [PATCH] Move scripts to /src subdirectory --- MDFormatter.php => src/MDFormatter.php | 0 MD_JAIL.php => src/MD_JAIL.php | 0 MD_STD.php => src/MD_STD.php | 0 MD_STD_CACHE.php => src/MD_STD_CACHE.php | 0 MD_STD_IN.php => src/MD_STD_IN.php | 3 +-- MD_STD_SEC.php => src/MD_STD_SEC.php | 2 +- 6 files changed, 2 insertions(+), 3 deletions(-) rename MDFormatter.php => src/MDFormatter.php (100%) rename MD_JAIL.php => src/MD_JAIL.php (100%) rename MD_STD.php => src/MD_STD.php (100%) rename MD_STD_CACHE.php => src/MD_STD_CACHE.php (100%) rename MD_STD_IN.php => src/MD_STD_IN.php (98%) rename MD_STD_SEC.php => src/MD_STD_SEC.php (98%) diff --git a/MDFormatter.php b/src/MDFormatter.php similarity index 100% rename from MDFormatter.php rename to src/MDFormatter.php diff --git a/MD_JAIL.php b/src/MD_JAIL.php similarity index 100% rename from MD_JAIL.php rename to src/MD_JAIL.php diff --git a/MD_STD.php b/src/MD_STD.php similarity index 100% rename from MD_STD.php rename to src/MD_STD.php diff --git a/MD_STD_CACHE.php b/src/MD_STD_CACHE.php similarity index 100% rename from MD_STD_CACHE.php rename to src/MD_STD_CACHE.php diff --git a/MD_STD_IN.php b/src/MD_STD_IN.php similarity index 98% rename from MD_STD_IN.php rename to src/MD_STD_IN.php index 6831f18..0bae377 100644 --- a/MD_STD_IN.php +++ b/src/MD_STD_IN.php @@ -5,8 +5,7 @@ declare(strict_types = 1); /** - * Standard class providing overrides of default PHP functions as static - * functions. + * Encapsulates functions for handling inputs. */ final class MD_STD_IN { /** diff --git a/MD_STD_SEC.php b/src/MD_STD_SEC.php similarity index 98% rename from MD_STD_SEC.php rename to src/MD_STD_SEC.php index b9f92f3..9a3d794 100644 --- a/MD_STD_SEC.php +++ b/src/MD_STD_SEC.php @@ -5,7 +5,7 @@ declare(strict_types = 1); /** - * Class providing static functions with basic security operations. + * Gathers wrappers for handling basic security operations. */ final class MD_STD_SEC { /**