From 4e3c98719c257102cb341377afa23de057a5cbad Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Thu, 6 Aug 2020 11:08:10 +0200 Subject: [PATCH] Add list of length and weight units --- src/MDUnitsSet.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/MDUnitsSet.php diff --git a/src/MDUnitsSet.php b/src/MDUnitsSet.php new file mode 100644 index 0000000..aa0c47e --- /dev/null +++ b/src/MDUnitsSet.php @@ -0,0 +1,16 @@ + + */ + +/** + * Class containing available units for weights, lengths etc. + */ +class MDUnitsSet { + + const UNITS_LENGTH = ['', 'm', 'dm', 'cm', 'mm']; + const UNITS_WEIGHT = ['', 't', 'kg', 'g']; + +}