Completed
Push — master ( b254ca...3fe05c )
by Aimeos
02:44
created
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/Basket/Address/Standard.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -31,8 +31,6 @@
 block discarded – undo
31 31
 	 * Initializes the client
32 32
 	 *
33 33
 	 * @param \Aimeos\MShop\Context\Item\Iface $context MShop context object
34
-	 * @param \Aimeos\MW\View\Iface $view View object
35
-	 * @param array $templatePaths List of file system paths where the templates are stored
36 34
 	 * @param string $path Name of the client, e.g "basket/address"
37 35
 	 */
38 36
 	public function __construct( \Aimeos\MShop\Context\Item\Iface $context, $path )
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
@@ -154,7 +154,7 @@
 block discarded – undo
154 154
 	 * Sets the view object that will generate the admin output.
155 155
 	 *
156 156
 	 * @param \Aimeos\MW\View\Iface $view The view object which generates the admin output
157
-	 * @return \Aimeos\Admin\JQAdm\Iface Reference to this object for fluent calls
157
+	 * @return Base Reference to this object for fluent calls
158 158
 	 */
159 159
 	public function setView( \Aimeos\MW\View\Iface $view )
160 160
 	{
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/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' );
Please login to merge, or discard this patch.