You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: setup/modelfactory.class.inc.php
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -71,14 +71,14 @@ class MFException extends Exception
71
71
*
72
72
* @inheritDoc
73
73
*
74
-
* @param $message
75
-
* @param $code: error code
76
-
* @param $oNode: dom node
77
-
* @param $sXPath: XML xpath: if provided used in exception message. otherwise computed via $oNode
78
-
* @param $sExtraInfo: additional information stored in exception
79
-
* @param $oParentFallbackNode: fallback dom node (usually parent). in case $oNode XML line is wrong (set to 0), line number computed/displayed in error message comes from $oParentFallbackNode
74
+
* @param string $message
75
+
* @param int $code: error code
76
+
* @param DesignElement $oNode: dom node
77
+
* @param string|null $sXPath: XML xpath: if provided used in exception message. otherwise computed via $oNode
78
+
* @param string $sExtraInfo: additional information stored in exception
79
+
* @param DesignElement|null $oParentFallbackNode: fallback dom node (usually parent). in case $oNode XML line is wrong (set to 0), line number computed/displayed in error message comes from $oParentFallbackNode
thrownewMFException('could not be modified (marked as deleted)', MFException::COULD_NOT_BE_MODIFIED_ALREADY_DELETED, $oNode, $sPath, $oParentFallbackNode);
2134
+
thrownewMFException('could not be modified (marked as deleted)', MFException::COULD_NOT_BE_MODIFIED_ALREADY_DELETED, $oNode, $sPath, '', $oParentFallbackNode);
0 commit comments