Completed
Push — master ( 96b5a6...c41e60 )
by Aimeos
03:06
created
controller/jobs/src/Controller/Jobs/Customer/Email/Account/Standard.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -98,9 +98,6 @@
 block discarded – undo
98 98
 	 * Sends the account creation e-mail to the e-mail address of the customer
99 99
 	 *
100 100
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context item object
101
-	 * @param \Aimeos\MShop\Common\Item\Address\Iface $address Payment address item of the customer
102
-	 * @param string $code Customer login name
103
-	 * @param string $password Customer clear text password
104 101
 	 */
105 102
 	protected function sendEmail( \Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MShop\Customer\Item\Iface $item )
106 103
 	{
Please login to merge, or discard this patch.
controller/jobs/src/Controller/Jobs/Product/Import/Csv/Standard.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -499,7 +499,7 @@
 block discarded – undo
499 499
 	 *
500 500
 	 * @param array $products List of products items implementing \Aimeos\MShop\Product\Item\Iface
501 501
 	 * @param array $data Associative list of import data as index/value pairs
502
-	 * @param array $mappings Associative list of positions and domain item keys
502
+	 * @param array $mapping Associative list of positions and domain item keys
503 503
 	 * @param \Aimeos\Controller\Common\Product\Import\Csv\Processor\Iface $processor Processor object
504 504
 	 * @param boolean $strict Log columns not mapped or silently ignore them
505 505
 	 * @return integer Number of products that couldn't be imported
Please login to merge, or discard this patch.
Controller/Common/Product/Import/Csv/Processor/Catalog/StandardTest.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -321,6 +321,7 @@
 block discarded – undo
321 321
 
322 322
 	/**
323 323
 	 * @param string $code
324
+	 * @return \Aimeos\MShop\Catalog\Item\Iface
324 325
 	 */
325 326
 	protected function get( $code )
326 327
 	{
Please login to merge, or discard this patch.
tests/Controller/Common/Product/Import/Csv/Processor/Stock/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -216,6 +216,9 @@
 block discarded – undo
216 216
 	}
217 217
 
218 218
 
219
+	/**
220
+	 * @param integer $prodid
221
+	 */
219 222
 	protected function getStockItems( $prodid )
220 223
 	{
221 224
 		$manager = \Aimeos\MShop\Factory::createManager( $this->context, 'product/stock' );
Please login to merge, or discard this patch.