Completed
Push — develop ( 3d5c62...ff34f8 )
by Daniel
06:38
created
services/actions/type/load_field.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@
 block discarded – undo
29 29
 	 * @param \phpbb\request\request_interface				$request			Request object
30 30
 	 * @param \phpbb\template\template						$template			Template object
31 31
 	 * @param \blitze\content\services\form\fields_factory	$fields_factory		Fields factory  object
32
-	 * @param string										$admin_path			Admin path
32
+	 * @param \blitze\content\services\form\fields_factory										$admin_path			Admin path
33 33
 	 */
34 34
 	public function __construct(\phpbb\request\request_interface $request, \phpbb\template\template $template, \blitze\content\services\form\fields_factory $fields_factory, $admin_path)
35 35
 	{
Please login to merge, or discard this patch.
services/form/builder.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
 	 * @param int $topic_id
95 95
 	 * @param string $mode
96 96
 	 * @param bool $save_draft
97
-	 * @return string|false
97
+	 * @return string|boolean
98 98
 	 */
99 99
 	public function init($forum_id, $topic_id, $mode, $save_draft)
100 100
 	{
Please login to merge, or discard this patch.
services/form/field/range.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -93,7 +93,7 @@
 block discarded – undo
93 93
 	}
94 94
 
95 95
 	/**
96
-	 * @param string $values
96
+	 * @param string $value
97 97
 	 * @return array
98 98
 	 */
99 99
 	protected function get_range($value)
Please login to merge, or discard this patch.
services/form/field/textarea.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
 
182 182
 	/**
183 183
 	 * @param array $pages
184
-	 * @param array $titles
184
+	 * @param string[] $titles
185 185
 	 * @param array $data
186 186
 	 * @return mixed
187 187
 	 */
@@ -248,6 +248,7 @@  discard block
 block discarded – undo
248 248
 	 * When Previewing topic, we show all pages
249 249
 	 *
250 250
 	 * @param array $pages
251
+	 * @param integer $start
251 252
 	 * @return mixed
252 253
 	 */
253 254
 	protected function get_page_content($start, $field_name, array $pages)
Please login to merge, or discard this patch.
controller/main_controller.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,6 @@
 block discarded – undo
106 106
 	 *
107 107
 	 * @param string $type
108 108
 	 * @param int $topic_id
109
-	 * @param int $page
110 109
 	 * @return \Symfony\Component\HttpFoundation\Response A Symfony Response object
111 110
 	 */
112 111
 	public function show($type, $topic_id)
Please login to merge, or discard this patch.
services/views/driver/base_view.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -244,6 +244,7 @@
 block discarded – undo
244 244
 
245 245
 	/**
246 246
 	 * {@inheritdoc}
247
+	 * @param string $forum_id
247 248
 	 */
248 249
 	protected function get_filter_sql($filter_type, $filter_value, $forum_id)
249 250
 	{
Please login to merge, or discard this patch.