Add parent as an argument to the saveMap method for DotsAPI classes.

This commit is contained in:
2023-06-19 15:34:10 +03:00
parent 6e8a34112a
commit 5d0c12fac1
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -15,6 +15,6 @@ abstract class AbstractItemAPI
abstract public function getMap($context = null);
abstract public function saveMap($map);
abstract public function saveMap($map, $parent = null);
}