Completed
Push — master ( 452e16...087a76 )
by Aimeos
02:19
created
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.