Completed
Push — master ( 1b70d1...74cd60 )
by Aimeos
08:04
created
src/Aimeos/Shop/Controller/JqadmController.php 1 patch
Doc Comments   +7 added lines, -13 removed lines patch added patch discarded remove patch
@@ -30,9 +30,8 @@  discard block
 block discarded – undo
30 30
 	 * Returns the HTML code for a copy of a resource object
31 31
 	 *
32 32
 	 * @param string Resource location, e.g. "product"
33
-	 * @param string $sitecode Unique site code
34 33
 	 * @param integer $id Unique resource ID
35
-	 * @return string Generated output
34
+	 * @return \Illuminate\Contracts\View\View Generated output
36 35
 	 */
37 36
 	public function copyAction( $site = 'default', $resource, $id )
38 37
 	{
@@ -49,8 +48,7 @@  discard block
 block discarded – undo
49 48
 	 * Returns the HTML code for a new resource object
50 49
 	 *
51 50
 	 * @param string Resource location, e.g. "product"
52
-	 * @param string $sitecode Unique site code
53
-	 * @return string Generated output
51
+	 * @return \Illuminate\Contracts\View\View Generated output
54 52
 	 */
55 53
 	public function createAction( $site = 'default', $resource )
56 54
 	{
@@ -67,9 +65,8 @@  discard block
 block discarded – undo
67 65
 	 * Deletes the resource object or a list of resource objects
68 66
 	 *
69 67
 	 * @param string Resource location, e.g. "product"
70
-	 * @param string $sitecode Unique site code
71 68
 	 * @param integer $id Unique resource ID
72
-	 * @return string Generated output
69
+	 * @return \Illuminate\Contracts\View\View Generated output
73 70
 	 */
74 71
 	public function deleteAction( $site = 'default', $resource, $id )
75 72
 	{
@@ -86,9 +83,8 @@  discard block
 block discarded – undo
86 83
 	 * Returns the HTML code for the requested resource object
87 84
 	 *
88 85
 	 * @param string Resource location, e.g. "product"
89
-	 * @param string $sitecode Unique site code
90 86
 	 * @param integer $id Unique resource ID
91
-	 * @return string Generated output
87
+	 * @return \Illuminate\Contracts\View\View Generated output
92 88
 	 */
93 89
 	public function getAction( $site = 'default', $resource, $id )
94 90
 	{
@@ -105,8 +101,7 @@  discard block
 block discarded – undo
105 101
 	 * Saves a new resource object
106 102
 	 *
107 103
 	 * @param string Resource location, e.g. "product"
108
-	 * @param string $sitecode Unique site code
109
-	 * @return string Generated output
104
+	 * @return \Illuminate\Contracts\View\View Generated output
110 105
 	 */
111 106
 	public function saveAction( $site = 'default', $resource )
112 107
 	{
@@ -123,8 +118,7 @@  discard block
 block discarded – undo
123 118
 	 * Returns the HTML code for a list of resource objects
124 119
 	 *
125 120
 	 * @param string Resource location, e.g. "product"
126
-	 * @param string $sitecode Unique site code
127
-	 * @return string Generated output
121
+	 * @return \Illuminate\Contracts\View\View Generated output
128 122
 	 */
129 123
 	public function searchAction( $site = 'default', $resource )
130 124
 	{
@@ -141,7 +135,7 @@  discard block
 block discarded – undo
141 135
 	 * Returns the resource controller
142 136
 	 *
143 137
 	 * @param string $sitecode Unique site code
144
-	 * @return \Aimeos\MShop\Context\Item\Iface Context item
138
+	 * @return \Aimeos\Admin\JQAdm\Iface Context item
145 139
 	 */
146 140
 	protected function createClient( $sitecode, $resource )
147 141
 	{
Please login to merge, or discard this patch.