From 6f91f08279b53317e3ee4bc074bc873a38698689 Mon Sep 17 00:00:00 2001 From: Joshua Ramon Enslin Date: Thu, 6 Aug 2020 16:18:12 +0200 Subject: [PATCH] Add object position set --- src/MDObjectPositionsSet.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 src/MDObjectPositionsSet.php diff --git a/src/MDObjectPositionsSet.php b/src/MDObjectPositionsSet.php new file mode 100644 index 0000000..0bfc2f4 --- /dev/null +++ b/src/MDObjectPositionsSet.php @@ -0,0 +1,17 @@ + + */ + +/** + * Class containing available positions on an object. + */ +class MDObjectPositionsSet { + + const POSITIONS = [ + 'left', 'top_left', 'top', 'top_right', 'right', 'bottom_right', 'bottom', 'bottom_left', 'center', 'rear_side', 'edge', 'other', + ]; + +}