Completed
Push — master ( 06e75e...4dd477 )
by Florian
06:57
created
lib/Payone/Settings/Service/XmlGenerate.php 1 patch
Doc Comments   +8 added lines, -4 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
      * @api
50 50
      *
51 51
      * @param Payone_Settings_Data_ConfigFile_Root $config
52
-     * @return mixed @see SimpleXMLElement::asXml()
52
+     * @return string @see SimpleXMLElement::asXml()
53 53
      */
54 54
     public function generate(Payone_Settings_Data_ConfigFile_Root $config)
55 55
     {
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * @api
75 75
      *
76 76
      * @param Payone_Settings_Data_ConfigFile_Root $config
77
-     * @return mixed @see SimpleXMLElement::asXml()
77
+     * @return string|false @see SimpleXMLElement::asXml()
78 78
      */
79 79
     public function execute(Payone_Settings_Data_ConfigFile_Root $config)
80 80
     {
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
     /**
126 126
      * @param Payone_Settings_Data_ConfigFile_Shop $shopConfig
127 127
      * @param DOMElement $configXml
128
-     * @return string
128
+     * @return DOMElement
129 129
      */
130 130
     protected function mapShop(Payone_Settings_Data_ConfigFile_Shop $shopConfig, DOMElement $configXml)
131 131
     {
@@ -366,6 +366,10 @@  discard block
 block discarded – undo
366 366
         $this->addGlobal($cleatringTypeNode, $valueClearingType);
367 367
     }
368 368
 
369
+    /**
370
+     * @param DOMElement $parent
371
+     * @param Payone_Settings_Data_ConfigFile_PaymentMethod_Abstract $type
372
+     */
369 373
     public function addGlobal($parent, $type)
370 374
     {
371 375
 
@@ -401,7 +405,7 @@  discard block
 block discarded – undo
401 405
     /**
402 406
      * @param DOMElement $parent
403 407
      * @param $object
404
-     * @param $property
408
+     * @param string $property
405 409
      * @param bool $withCdata
406 410
      * @return DOMElement
407 411
      */
Please login to merge, or discard this patch.
lib/Payone/TransactionStatus/Factory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-     * @param $key
56
+     * @param string $key
57 57
      * @return Payone_TransactionStatus_Service_HandleRequest
58 58
      * @throws Exception
59 59
      */
Please login to merge, or discard this patch.
lib/Payone/Api/Request/Parameter/Authorization/PersonalData.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     }
96 96
 
97 97
     /**
98
-     * @return string
98
+     * @return integer
99 99
      */
100 100
     public function getBirthday()
101 101
     {
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     }
260 260
 
261 261
     /**
262
-     * @return string
262
+     * @return integer
263 263
      */
264 264
     public function getUserid()
265 265
     {
Please login to merge, or discard this patch.
lib/Payone/Api/Request/Parameter/CreateAccess/PersonalData.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     }
96 96
 
97 97
     /**
98
-     * @return string
98
+     * @return integer
99 99
      */
100 100
     public function getBirthday()
101 101
     {
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
     }
260 260
 
261 261
     /**
262
-     * @return string
262
+     * @return integer
263 263
      */
264 264
     public function getUserid()
265 265
     {
Please login to merge, or discard this patch.
lib/Payone/Api/Request/Parameter/Paydata/DataItem.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@
 block discarded – undo
30 30
     protected $data = NULL;
31 31
 
32 32
     /**
33
-     * @param int $key
34 33
      * @return array
35 34
      */
36 35
     public function toArray()
Please login to merge, or discard this patch.
lib/Payone/Settings/Factory.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-     * @param $key
56
+     * @param string $key
57 57
      * @return Payone_TransactionStatus_Service_HandleRequest
58 58
      * @throws Exception
59 59
      */
Please login to merge, or discard this patch.
lib/Payone/Log4php/Logger.php 1 patch
Doc Comments   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@  discard block
 block discarded – undo
84 84
 
85 85
 	/**
86 86
 	 * Returns the parent Logger. Can be null if this is the root logger.
87
-	 * @return Logger
87
+	 * @return Payone_Log4php_Logger
88 88
 	 */
89 89
 	public function getParent() {
90 90
 		return $this->parent;
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 	/**
142 142
 	 * Log a message object with the ERROR level.
143 143
 	 *
144
-	 * @param mixed $message message
144
+	 * @param string $message message
145 145
 	 * @param Exception $throwable Optional throwable information to include 
146 146
 	 *   in the logging event.
147 147
 	 */
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
 
396 396
 	/**
397 397
 	 * Sets the parent logger.
398
-	 * @param Logger $logger
398
+	 * @param Payone_Log4php_Logger $logger
399 399
 	 */
400 400
 	public function setParent(Payone_Log4php_Logger $logger) {
401 401
 		$this->parent = $logger;
@@ -453,7 +453,7 @@  discard block
 block discarded – undo
453 453
 	
454 454
 	/**
455 455
 	 * Clears all Logger definitions from the logger hierarchy.
456
-	 * @return boolean
456
+	 * @return boolean|null
457 457
 	 */
458 458
 	public static function clear() {
459 459
 		return self::getHierarchy()->clear();
Please login to merge, or discard this patch.