Completed
Push — develop ( 416f5a...556856 )
by Stoea
01:16
created
src/Mobilpay/Payment/Request/Abstract.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -123,6 +123,9 @@  discard block
 block discarded – undo
123 123
 	abstract protected function _prepare();
124 124
 	abstract protected function _loadFromXml(\DOMElement $elem);
125 125
 
126
+	/**
127
+	 * @param string $data
128
+	 */
126 129
 	static public function factory($data)
127 130
 	{
128 131
 		$objPmReq = null;
@@ -220,6 +223,9 @@  discard block
 block discarded – undo
220 223
 		return $objPmReq;
221 224
 	}
222 225
 
226
+	/**
227
+	 * @param integer $reqVersion
228
+	 */
223 229
 	protected function _setRequestInfo($reqVersion, $reqData)
224 230
 	{
225 231
 		$this->_objRequestInfo = new stdClass();
Please login to merge, or discard this patch.
src/Mobilpay/Payment/Request/Notify.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
     /**
94 94
      *
95 95
      * Populate the class from the request xml
96
-     * @param DOMNode $elem
96
+     * @param \DOMElement $elem
97 97
      * @return Mobilpay_Payment_Reuquest_Notify
98 98
      * @throws Exception On missing xml attributes
99 99
      */
@@ -237,8 +237,8 @@  discard block
 block discarded – undo
237 237
     /**
238 238
      *
239 239
      * Appends to computed xml element to  the xmlDoc and returns it
240
-     * @param DOMDocument $xmlDoc
241
-     * @return DOMElement
240
+     * @param \DOMDocument $xmlDoc
241
+     * @return \DOMElement
242 242
      */
243 243
     public function createXmlElement(\DOMDocument $xmlDoc) {
244 244
         $xmlNotifyElem = $xmlDoc->createElement('mobilpay');
Please login to merge, or discard this patch.