@@ -49,6 +49,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 ) |
@@ -785,7 +790,7 @@ discard block |
||
785 | 790 | /** |
786 | 791 | * Returns the items associated via a lists table |
787 | 792 | * |
788 | - * @param array $items List of items implementing \Aimeos\MShop\Common\Item\Lists\Iface |
|
793 | + * @param array $listItems List of items implementing \Aimeos\MShop\Common\Item\Lists\Iface |
|
789 | 794 | * @return array List of items implementing \Aimeos\MShop\Common\Item\Iface |
790 | 795 | */ |
791 | 796 | protected function getRefItems( array $listItems ) |
@@ -545,7 +545,7 @@ discard block |
||
545 | 545 | * @see admin/jsonadm/standard/template-post |
546 | 546 | * @see admin/jsonadm/standard/template-get |
547 | 547 | * @see admin/jsonadm/standard/template-options |
548 | - */ |
|
548 | + */ |
|
549 | 549 | $tplconf = 'admin/jsonadm/standard/template-put'; |
550 | 550 | $default = 'put-default.php'; |
551 | 551 | |
@@ -659,7 +659,7 @@ discard block |
||
659 | 659 | * @see admin/jsonadm/standard/template-post |
660 | 660 | * @see admin/jsonadm/standard/template-get |
661 | 661 | * @see admin/jsonadm/standard/template-put |
662 | - */ |
|
662 | + */ |
|
663 | 663 | $tplconf = 'admin/jsonadm/standard/template-options'; |
664 | 664 | $default = 'options-default.php'; |
665 | 665 |