Add missing extends statement to MDObjectPositionsSet

This commit is contained in:
Joshua Ramon Enslin 2020-08-24 20:35:15 +02:00 committed by Stefan Rohde-Enslin
parent d20f9ab80c
commit 500bcbe97b

View File

@ -9,7 +9,7 @@ declare(strict_types = 1);
/**
* Class containing available positions on an object.
*/
class MDObjectPositionsSet {
class MDObjectPositionsSet extends MDValueSet {
const POSITIONS = [
'left', 'top_left', 'top', 'top_right', 'right', 'bottom_right', 'bottom', 'bottom_left', 'center', 'rear_side', 'edge', 'other',