Completed
Push — master ( 67397e...3fea31 )
by Aimeos
01:44
created
client/jsonapi/tests/Client/JsonApi/Basket/Coupon/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -199,6 +199,9 @@
 block discarded – undo
199 199
 	}
200 200
 
201 201
 
202
+	/**
203
+	 * @param string $code
204
+	 */
202 205
 	protected function addProduct( $code )
203 206
 	{
204 207
 		$prodId = \Aimeos\MShop\Factory::createManager( $this->context, 'product' )->findItem( $code )->getId();
Please login to merge, or discard this patch.
client/jsonapi/src/Client/JsonApi/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
 	 * Sets the view object that will generate the admin output.
151 151
 	 *
152 152
 	 * @param \Aimeos\MW\View\Iface $view The view object which generates the admin output
153
-	 * @return \Aimeos\Admin\JQAdm\Iface Reference to this object for fluent calls
153
+	 * @return Base Reference to this object for fluent calls
154 154
 	 */
155 155
 	public function setView( \Aimeos\MW\View\Iface $view )
156 156
 	{
Please login to merge, or discard this patch.
client/jsonapi/src/Client/JsonApi/Common/Factory/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
 	/**
41 41
 	 * Adds the decorators to the JSON API client object
42 42
 	 *
43
-	 * @param \Aimeos\Client\JsonApi\Common\Iface $client Client object
43
+	 * @param \Aimeos\Client\JsonApi\Iface $client Client object
44 44
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context instance with necessary objects
45 45
 	 * @param string $path Name of the client, e.g "product"
46 46
 	 * @return \Aimeos\Client\JsonApi\Iface Client object
Please login to merge, or discard this patch.
client/jsonapi/src/Client/JsonApi/Common/Decorator/Base.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@
 block discarded – undo
150 150
 	 * Sets the view object that will generate the admin output.
151 151
 	 *
152 152
 	 * @param \Aimeos\MW\View\Iface $view The view object which generates the admin output
153
-	 * @return \Aimeos\Admin\JQAdm\Iface Reference to this object for fluent calls
153
+	 * @return Base Reference to this object for fluent calls
154 154
 	 */
155 155
 	public function setView( \Aimeos\MW\View\Iface $view )
156 156
 	{
Please login to merge, or discard this patch.
client/jsonapi/tests/Client/JsonApi/Common/Factory/BaseTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -123,6 +123,9 @@
 block discarded – undo
123 123
 	}
124 124
 
125 125
 
126
+	/**
127
+	 * @param string $name
128
+	 */
126 129
 	protected function access( $name )
127 130
 	{
128 131
 		$class = new \ReflectionClass( \Aimeos\Client\JsonApi\Common\Factory\Base::class );
Please login to merge, or discard this patch.
client/jsonapi/tests/Client/JsonApi/Order/StandardTest.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -351,6 +351,9 @@
 block discarded – undo
351 351
 	}
352 352
 
353 353
 
354
+	/**
355
+	 * @param string $name
356
+	 */
354 357
 	protected function access( $name )
355 358
 	{
356 359
 		$class = new \ReflectionClass( \Aimeos\Client\JsonApi\Order\Standard::class );
Please login to merge, or discard this patch.