Completed
Push — master ( f9d464...00af66 )
by Aimeos
02:40
created
admin/jsonadm/src/Admin/JsonAdm/Base.php 1 patch
Doc Comments   +5 added lines patch added patch discarded remove patch
@@ -49,6 +49,7 @@  discard block
 block discarded – undo
49 49
 	 * @param string $body Request body
50 50
 	 * @param array &$header Variable which contains the HTTP headers and the new ones afterwards
51 51
 	 * @param integer &$status Variable which contains the HTTP status afterwards
52
+	 * @param integer $status
52 53
 	 * @return string Content for response body
53 54
 	 */
54 55
 	public function delete( $body, array &$header, &$status )
@@ -252,6 +253,7 @@  discard block
 block discarded – undo
252 253
 	 * @param string $body Request body
253 254
 	 * @param array &$header Variable which contains the HTTP headers and the new ones afterwards
254 255
 	 * @param integer &$status Variable which contains the HTTP status afterwards
256
+	 * @param integer $status
255 257
 	 * @return string Content for response body
256 258
 	 */
257 259
 	public function patch( $body, array &$header, &$status )
@@ -380,6 +382,7 @@  discard block
 block discarded – undo
380 382
 	 * @param string $body Request body
381 383
 	 * @param array &$header Variable which contains the HTTP headers and the new ones afterwards
382 384
 	 * @param integer &$status Variable which contains the HTTP status afterwards
385
+	 * @param integer $status
383 386
 	 * @return string Content for response body
384 387
 	 */
385 388
 	public function post( $body, array &$header, &$status )
@@ -508,6 +511,7 @@  discard block
 block discarded – undo
508 511
 	 * @param string $body Request body
509 512
 	 * @param array &$header Variable which contains the HTTP headers and the new ones afterwards
510 513
 	 * @param integer &$status Variable which contains the HTTP status afterwards
514
+	 * @param integer $status
511 515
 	 * @return string Content for response body
512 516
 	 */
513 517
 	public function put( $body, array &$header, &$status )
@@ -559,6 +563,7 @@  discard block
 block discarded – undo
559 563
 	 * @param string $body Request body
560 564
 	 * @param array &$header Variable which contains the HTTP headers and the new ones afterwards
561 565
 	 * @param integer &$status Variable which contains the HTTP status afterwards
566
+	 * @param integer $status
562 567
 	 * @return string Content for response body
563 568
 	 */
564 569
 	public function options( $body, array &$header, &$status )
Please login to merge, or discard this patch.
admin/jsonadm/tests/Admin/JsonAdm/Common/Factory/BaseTest.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -97,6 +97,10 @@
 block discarded – undo
97 97
 class TestAbstract
98 98
 	extends \Aimeos\Admin\JsonAdm\Common\Factory\Base
99 99
 {
100
+	/**
101
+	 * @param string $classprefix
102
+	 * @param string $path
103
+	 */
100 104
 	public static function addDecoratorsPublic( \Aimeos\Admin\JsonAdm\Iface $client, array $decorators, $classprefix,
101 105
 		\Aimeos\MShop\Context\Item\Iface $context, \Aimeos\MW\View\Iface $view, $templatePaths, $path )
102 106
 	{
Please login to merge, or discard this patch.