📄 constraintfailure.phpm
字号:
<?phprequire_once("constants.phpm");require_once("constraint.phpm");class constraintfailure { private $_strParameterName; private $_intVerbMethod; private $_objFailedConstraintObject; function __construct($strParameterName, $intVerbMethod, $objFailedConstraintObject) { $this->_strParameterName = $strParameterName; $this->_intVerbMethod = $intVerbMethod; $this->_objFailedConstraintObject = $objFailedConstraintObject; } function GetParameterName() { return($this->_strParameterName); } function GetVerbMethod() { return($this->_intVerbMethod); } function GetFailedConstraintObject() { return($this->_objFailedConstraintObject); } }
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -