Completed
Push — master ( 452e16...087a76 )
by Aimeos
02:19
created
controller/frontend/src/Controller/Frontend/Basket/Iface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,6 @@
 block discarded – undo
150 150
 	 * Sets the delivery/payment service item based on the service ID.
151 151
 	 *
152 152
 	 * @param string $type Service type code like 'payment' or 'delivery'
153
-	 * @param string $id|null Unique ID of the service item or null to remove it
154 153
 	 * @param array $attributes Associative list of key/value pairs containing the attributes selected or
155 154
 	 * 	entered by the customer when choosing one of the delivery or payment options
156 155
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Basket/Standard.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,6 @@
 block discarded – undo
150 150
 	 * Sets the delivery/payment service item based on the service ID.
151 151
 	 *
152 152
 	 * @param string $type Service type code like 'payment' or 'delivery'
153
-	 * @param string $id|null Unique ID of the service item or null to remove it
154 153
 	 * @param array $attributes Associative list of key/value pairs containing the attributes selected or
155 154
 	 * 	entered by the customer when choosing one of the delivery or payment options
156 155
 	 * @throws \Aimeos\Controller\Frontend\Basket\Exception If there is no price to the service item attached
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Attribute/Standard.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	 * Returns the given search filter with the conditions attached for filtering by type code
26 26
 	 *
27 27
 	 * @param \Aimeos\MW\Criteria\Iface $filter Criteria object used for attribute search
28
-	 * @param array $codes List of attribute type codes
28
+	 * @param string[] $codes List of attribute type codes
29 29
 	 * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching
30 30
 	 * @since 2017.03
31 31
 	 */
@@ -108,6 +108,7 @@  discard block
 block discarded – undo
108 108
 	 * @param \Aimeos\MW\Criteria\Iface $filter Critera object which contains the filter conditions
109 109
 	 * @param string[] $domains Domain names of items that are associated with the attributes and that should be fetched too
110 110
 	 * @param integer &$total Parameter where the total number of found attributes will be stored in
111
+	 * @param integer $total
111 112
 	 * @return array Ordered list of attribute items implementing \Aimeos\MShop\Attribute\Item\Iface
112 113
 	 * @since 2017.03
113 114
 	 */
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Locale/Standard.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -65,6 +65,7 @@
 block discarded – undo
65 65
 	 * @param \Aimeos\MW\Criteria\Iface $filter Critera object which contains the filter conditions
66 66
 	 * @param string[] $domains Domain names of items that are associated with the locales and that should be fetched too
67 67
 	 * @param integer &$total Parameter where the total number of found locales will be stored in
68
+	 * @param integer $total
68 69
 	 * @return array Ordered list of locale items implementing \Aimeos\MShop\Locale\Item\Iface
69 70
 	 * @since 2017.03
70 71
 	 */
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Stock/Standard.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 	 * Returns the given search filter with the conditions attached for filtering by product code
26 26
 	 *
27 27
 	 * @param \Aimeos\MW\Criteria\Iface $filter Criteria object used for stock search
28
-	 * @param array $codes List of product codes
28
+	 * @param string[] $codes List of product codes
29 29
 	 * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching
30 30
 	 * @since 2017.03
31 31
 	 */
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
 	 * Returns the given search filter with the conditions attached for filtering by type code
46 46
 	 *
47 47
 	 * @param \Aimeos\MW\Criteria\Iface $filter Criteria object used for stock search
48
-	 * @param array $codes List of stock type codes
48
+	 * @param string[] $codes List of stock type codes
49 49
 	 * @return \Aimeos\MW\Criteria\Iface Criteria object containing the conditions for searching
50 50
 	 * @since 2017.03
51 51
 	 */
@@ -95,6 +95,7 @@  discard block
 block discarded – undo
95 95
 	 *
96 96
 	 * @param \Aimeos\MW\Criteria\Iface $filter Critera object which contains the filter conditions
97 97
 	 * @param integer &$total Parameter where the total number of found stocks will be stored in
98
+	 * @param integer $total
98 99
 	 * @return array Ordered list of stock items implementing \Aimeos\MShop\Stock\Item\Iface
99 100
 	 * @since 2017.03
100 101
 	 */
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Customer/Decorator/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -231,7 +231,7 @@
 block discarded – undo
231 231
 	/**
232 232
 	 * Returns the frontend controller
233 233
 	 *
234
-	 * @return \Aimeos\Controller\Frontend\Customer\Iface Frontend controller object
234
+	 * @return \Aimeos\Controller\Frontend\Iface Frontend controller object
235 235
 	 * @since 2017.04
236 236
 	 */
237 237
 	protected function getController()
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Service/Decorator/Base.php 1 patch
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,7 +77,6 @@  discard block
 block discarded – undo
77 77
 	/**
78 78
 	 * Returns the service item for the given ID
79 79
 	 *
80
-	 * @param string $id Unique service ID
81 80
 	 * @param array $ref List of domains for which the items referenced by the services should be fetched too
82 81
 	 * @return \Aimeos\MShop\Service\Item\Iface Service item object
83 82
 	 */
@@ -91,8 +90,6 @@  discard block
 block discarded – undo
91 90
 	 * Returns the service providers for the given
92 91
 	 *
93 92
 	 * @param string $type Service type, e.g. "delivery" (shipping related) or "payment" (payment related)
94
-	 * @param string $serviceId Identifier of one of the service option returned by getService()
95
-	 * @param \Aimeos\MShop\Order\Item\Base\Iface $basket Basket object
96 93
 	 * @return array List of attribute definitions implementing \Aimeos\MW\Criteria\Attribute\Iface
97 94
 	 */
98 95
 	public function getProviders( $type, $ref = ['media', 'price', 'text'] )
@@ -172,7 +169,7 @@  discard block
 block discarded – undo
172 169
 	/**
173 170
 	 * Returns the frontend controller
174 171
 	 *
175
-	 * @return \Aimeos\Controller\Frontend\Service\Iface Frontend controller object
172
+	 * @return \Aimeos\Controller\Frontend\Iface Frontend controller object
176 173
 	 */
177 174
 	protected function getController()
178 175
 	{
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Service/Iface.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -34,7 +34,6 @@  discard block
 block discarded – undo
34 34
 	/**
35 35
 	 * Returns the service item for the given ID
36 36
 	 *
37
-	 * @param string $id Unique service ID
38 37
 	 * @param array $ref List of domains for which the items referenced by the services should be fetched too
39 38
 	 * @return \Aimeos\MShop\Service\Item\Iface Service item object
40 39
 	 */
@@ -44,8 +43,6 @@  discard block
 block discarded – undo
44 43
 	 * Returns the service providers for the given
45 44
 	 *
46 45
 	 * @param string $type Service type, e.g. "delivery" (shipping related) or "payment" (payment related)
47
-	 * @param string $serviceId Identifier of one of the service option returned by getService()
48
-	 * @param \Aimeos\MShop\Order\Item\Base\Iface $basket Basket object
49 46
 	 * @return array List of attribute definitions implementing \Aimeos\MW\Criteria\Attribute\Iface
50 47
 	 */
51 48
 	public function getProviders( $type, $ref = ['media', 'price', 'text'] );
Please login to merge, or discard this patch.
controller/frontend/src/Controller/Frontend/Service/Standard.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -44,8 +44,8 @@
 block discarded – undo
44 44
 	/**
45 45
 	 * Returns the service item for the given ID
46 46
 	 *
47
-	 * @param string $id Unique service ID
48 47
 	 * @param string[] $ref List of domain names whose items should be fetched too
48
+	 * @param integer $serviceId
49 49
 	 * @return \Aimeos\MShop\Service\Provider\Iface Service provider object
50 50
 	 */
51 51
 	public function getProvider( $serviceId, $ref = ['media', 'price', 'text'] )
Please login to merge, or discard this patch.