Completed
Push — master ( 37757a...f84d4b )
by Aimeos
07:01
created
src/Aimeos/Shop/Controller/ExtadmController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
 	 * Creates a list of all available translations.
136 136
 	 *
137 137
 	 * @param \Aimeos\MShop\Context\Item\Iface $context Context object
138
-	 * @return array List of language IDs with labels
138
+	 * @return string List of language IDs with labels
139 139
 	 */
140 140
 	protected function getJsonLanguages( \Aimeos\MShop\Context\Item\Iface $context )
141 141
 	{
Please login to merge, or discard this patch.
src/Aimeos/Shop/Controller/JqadmController.php 1 patch
Doc Comments   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
 	/**
31 31
 	 * Returns the HTML code for a copy of a resource object
32 32
 	 *
33
-	 * @return string Generated output
33
+	 * @return \Illuminate\Contracts\View\View Generated output
34 34
 	 */
35 35
 	public function copyAction()
36 36
 	{
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 	/**
47 47
 	 * Returns the HTML code for a new resource object
48 48
 	 *
49
-	 * @return string Generated output
49
+	 * @return \Illuminate\Contracts\View\View Generated output
50 50
 	 */
51 51
 	public function createAction( $resource )
52 52
 	{
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
62 62
 	/**
63 63
 	 * Deletes the resource object or a list of resource objects
64 64
 	 *
65
-	 * @return string Generated output
65
+	 * @return \Illuminate\Contracts\View\View Generated output
66 66
 	 */
67 67
 	public function deleteAction( $resource, $id )
68 68
 	{
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	/**
79 79
 	 * Returns the HTML code for the requested resource object
80 80
 	 *
81
-	 * @return string Generated output
81
+	 * @return \Illuminate\Contracts\View\View Generated output
82 82
 	 */
83 83
 	public function getAction()
84 84
 	{
@@ -94,7 +94,7 @@  discard block
 block discarded – undo
94 94
 	/**
95 95
 	 * Saves a new resource object
96 96
 	 *
97
-	 * @return string Generated output
97
+	 * @return \Illuminate\Contracts\View\View Generated output
98 98
 	 */
99 99
 	public function saveAction( $resource )
100 100
 	{
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 	/**
111 111
 	 * Returns the HTML code for a list of resource objects
112 112
 	 *
113
-	 * @return string Generated output
113
+	 * @return \Illuminate\Contracts\View\View Generated output
114 114
 	 */
115 115
 	public function searchAction( $resource )
116 116
 	{
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
 	/**
127 127
 	 * Returns the resource controller
128 128
 	 *
129
-	 * @return \Aimeos\MShop\Context\Item\Iface Context item
129
+	 * @return \Aimeos\Admin\JQAdm\Iface Context item
130 130
 	 */
131 131
 	protected function createClient()
132 132
 	{
Please login to merge, or discard this patch.