Completed
Push — develop ( 755a17...843010 )
by Daniel
07:33
created
services/comments/form.php 3 patches
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 	/**
112 112
 	 * @param int $forum_id
113 113
 	 * @param array $qr_hidden_fields
114
-	 * @return bool
114
+	 * @return boolean|null
115 115
 	 */
116 116
 	 protected function set_smilies($forum_id, array &$qr_hidden_fields)
117 117
 	 {
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 	/**
125 125
 	 * @param int $forum_id
126 126
 	 * @param array $qr_hidden_fields
127
-	 * @return bool
127
+	 * @return boolean|null
128 128
 	 */
129 129
 	 protected function set_bbcode($forum_id, array &$qr_hidden_fields)
130 130
 	 {
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
 	/**
138 138
 	 * @param bool $is_watching
139 139
 	 * @param array $qr_hidden_fields
140
-	 * @return bool
140
+	 * @return boolean|null
141 141
 	 */
142 142
 	 protected function set_notification($is_watching, array &$qr_hidden_fields)
143 143
 	 {
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 	/**
151 151
 	 * @param int $topic_status
152 152
 	 * @param array $qr_hidden_fields
153
-	 * @return bool
153
+	 * @return boolean|null
154 154
 	 */
155 155
 	 protected function set_topic_lock($topic_status, array &$qr_hidden_fields)
156 156
 	 {
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
 
163 163
 	/**
164 164
 	 * @param array $qr_hidden_fields
165
-	 * @return bool
165
+	 * @return boolean|null
166 166
 	 */
167 167
 	 protected function set_magic_urls(array &$qr_hidden_fields)
168 168
 	 {
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
 	 * @param \phpbb\user					$user				User object
43 43
 	 * @param string						$root_path			Path to the phpbb includes directory.
44 44
 	 * @param string						$php_ext			php file extension
45
-	*/
45
+	 */
46 46
 	public function __construct(\phpbb\auth\auth $auth, \phpbb\config\config $config, \phpbb\language\language $language, \phpbb\template\template $template, \phpbb\user $user, $root_path, $php_ext)
47 47
 	{
48 48
 		$this->auth = $auth;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 				'L_QUICKREPLY'			=> $this->language->lang('NEW_COMMENT'),
82 82
 				'U_QR_ACTION'			=> append_sid("{$this->phpbb_root_path}posting.{$this->php_ext}", "mode=reply&f={$topic_data['forum_id']}&t={$topic_data['topic_id']}"),
83 83
 				'QR_HIDDEN_FIELDS'		=> build_hidden_fields($qr_hidden_fields),
84
-				'SUBJECT'				=> 'Re: ' . censor_text($topic_data['topic_title']),
84
+				'SUBJECT'				=> 'Re: '.censor_text($topic_data['topic_title']),
85 85
 			));
86 86
 		}
87 87
 	}
Please login to merge, or discard this patch.
services/form/builder.php 3 patches
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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,6 @@
 block discarded – undo
9 9
 
10 10
 namespace blitze\content\services\form;
11 11
 
12
-use Symfony\Component\DependencyInjection\Container;
13 12
 use Cocur\Slugify\Slugify;
14 13
 
15 14
 class builder
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 		foreach ($fields_data as $field => $value)
142 142
 		{
143 143
 			$value = is_array($value) ? join("\n", $value) : $value;
144
-			$message .= '[tag=' . $field . ']' . $value . '[/tag]';
144
+			$message .= '[tag='.$field.']'.$value.'[/tag]';
145 145
 		}
146 146
 
147 147
 		return $message;
@@ -191,8 +191,8 @@  discard block
 block discarded – undo
191 191
 	public function get_content_view($content_type, array $post_data, $view)
192 192
 	{
193 193
 		$entity = $this->types->get_type($content_type);
194
-		$get_tags = 'get_' . $view . '_tags';
195
-		$get_template = 'get_' . $view . '_tpl';
194
+		$get_tags = 'get_'.$view.'_tags';
195
+		$get_template = 'get_'.$view.'_tpl';
196 196
 
197 197
 		$this->fields->prepare_to_show($entity, array($post_data['topic_id']), $entity->$get_tags(), $entity->$get_template(), $view);
198 198
 		$content = $this->fields->build_content(array_change_key_case($post_data, CASE_UPPER));
Please login to merge, or discard this patch.
services/form/field/range.php 2 patches
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.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
 			),
69 69
 			'css'   => array(
70 70
 				'@blitze_content/vendor/ion.rangeSlider/css/ion.rangeSlider.min.css',
71
-				'@blitze_content/vendor/ion.rangeSlider/css/ion.rangeSlider.' . $data['field_props']['theme'] . '.min.css',
71
+				'@blitze_content/vendor/ion.rangeSlider/css/ion.rangeSlider.'.$data['field_props']['theme'].'.min.css',
72 72
 			)
73 73
 		));
74 74
 
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
 			array_walk($range, array($this, 'set_prefix'), $data['field_props']['prefix']);
90 90
 		}
91 91
 
92
-		return join($range, ' - ') . $data['field_props']['postfix'];
92
+		return join($range, ' - ').$data['field_props']['postfix'];
93 93
 	}
94 94
 
95 95
 	/**
@@ -129,6 +129,6 @@  discard block
 block discarded – undo
129 129
 	 */
130 130
 	protected function set_prefix(&$item, $key, $prefix)
131 131
 	{
132
-		$item = $prefix . $item;
132
+		$item = $prefix.$item;
133 133
 	}
134 134
 }
Please login to merge, or discard this patch.
services/form/field/textarea.php 2 patches
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.
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -99,9 +99,9 @@  discard block
 block discarded – undo
99 99
 	{
100 100
 		$toc_pattern = '(<h4>(.*?)</h4>)?';
101 101
 		$pages_pattern = '<p><!-- pagebreak --></p>';
102
-		$split_pattern = $pages_pattern . (($view_mode !== 'detail') ? $toc_pattern : '');
102
+		$split_pattern = $pages_pattern.(($view_mode !== 'detail') ? $toc_pattern : '');
103 103
 
104
-		$pages = array_filter(preg_split('#' . $split_pattern . '#s', $data['field_value']));
104
+		$pages = array_filter(preg_split('#'.$split_pattern.'#s', $data['field_value']));
105 105
 
106 106
 		if ($view_mode !== 'detail')
107 107
 		{
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
 		}
110 110
 
111 111
 		// get page titles to generate TOC
112
-		preg_match_all('#' . $pages_pattern . $toc_pattern . '#s', $data['field_value'], $matches);
112
+		preg_match_all('#'.$pages_pattern.$toc_pattern.'#s', $data['field_value'], $matches);
113 113
 
114 114
 		return $this->get_detail_value($pages, $matches[2], $data);
115 115
 	}
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 			$asset_path = $this->util->get_web_path();
125 125
 			$this->util->add_assets(array(
126 126
 				'js'   => array(
127
-					$asset_path . 'assets/javascript/editor.js',
127
+					$asset_path.'assets/javascript/editor.js',
128 128
 					'@blitze_content/assets/form/textarea.min.js'
129 129
 				)
130 130
 			));
@@ -144,12 +144,12 @@  discard block
 block discarded – undo
144 144
 		// Assigning custom bbcodes
145 145
 		if (!function_exists('display_custom_bbcodes'))
146 146
 		{
147
-			include($this->phpbb_root_path . 'includes/functions_display.' . $this->php_ext);
147
+			include($this->phpbb_root_path.'includes/functions_display.'.$this->php_ext);
148 148
 		}
149 149
 
150 150
 		display_custom_bbcodes();
151 151
 
152
-		$bbcode_status	= ($this->config['allow_bbcode'] && $this->auth->acl_get('f_bbcode', $forum_id)) ? true : false;
152
+		$bbcode_status = ($this->config['allow_bbcode'] && $this->auth->acl_get('f_bbcode', $forum_id)) ? true : false;
153 153
 
154 154
 		$dataref = $this->template_context->get_data_ref();
155 155
 		$this->ptemplate->assign_block_vars_array('custom_tags', (isset($dataref['custom_tags'])) ? $dataref['custom_tags'] : array());
@@ -238,7 +238,7 @@  discard block
 block discarded – undo
238 238
 				$this->template->assign_block_vars('toc', array(
239 239
 					'TITLE'		=> ($title) ? $title : $this->language->lang('CONTENT_TOC_UNTITLED'),
240 240
 					'S_PAGE'	=> ($page === $start),
241
-					'U_VIEW'	=> append_sid($topic_url, ($page) ? 'page=' . $page : false),
241
+					'U_VIEW'	=> append_sid($topic_url, ($page) ? 'page='.$page : false),
242 242
 				));
243 243
 			}
244 244
 		}
Please login to merge, or discard this patch.
services/helper.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -260,7 +260,7 @@
 block discarded – undo
260 260
 	/**
261 261
 	 * @param array $post_data
262 262
 	 * @param array $topic_data
263
-	 * @param string $cp_class
263
+	 * @param string $cp_mode
264 264
 	 * @return string
265 265
 	 */
266 266
 	protected function get_cp_param(array $post_data, array $topic_data, $cp_mode)
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
 	 * @param \phpbb\user			$user				User object
35 35
 	 * @param string				$phpbb_root_path	Path to the phpbb includes directory.
36 36
 	 * @param string				$php_ext			php file extension
37
-	*/
37
+	 */
38 38
 	public function __construct(\phpbb\auth\auth $auth, \phpbb\config\db $config, \phpbb\user $user, $phpbb_root_path, $php_ext)
39 39
 	{
40 40
 		$this->auth = $auth;
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 	{
117 117
 		return append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=queue&amp;mode=approve_details&amp;f=' . $post_data['forum_id'] . '&amp;p=' . $post_data['post_id'], true, $this->user->session_id);
118 118
 	}
119
-	*/
119
+	 */
120 120
 
121 121
 	/**
122 122
 	 * @param array $post_data
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 	public function get_edit_url(array $post_data, array $topic_data, $cp_mode = '')
54 54
 	{
55 55
 		$cp_param = $this->get_cp_param($post_data, $topic_data, $cp_mode);
56
-		return ($this->edit_allowed($post_data, $topic_data)) ? append_sid("{$this->phpbb_root_path}posting.$this->php_ext", "mode=edit&amp;f={$topic_data['forum_id']}&amp;p={$post_data['post_id']}" . $cp_param) : '';
56
+		return ($this->edit_allowed($post_data, $topic_data)) ? append_sid("{$this->phpbb_root_path}posting.$this->php_ext", "mode=edit&amp;f={$topic_data['forum_id']}&amp;p={$post_data['post_id']}".$cp_param) : '';
57 57
 	}
58 58
 
59 59
 	/**
@@ -65,7 +65,7 @@  discard block
 block discarded – undo
65 65
 	public function get_delete_url(array $post_data, array $topic_data, $cp_mode = '')
66 66
 	{
67 67
 		$cp_param = $this->get_cp_param($post_data, $topic_data, $cp_mode);
68
-		return ($this->delete_allowed($post_data, $topic_data)) ? append_sid("{$this->phpbb_root_path}posting.$this->php_ext", 'mode=' . (($this->softdelete_allowed($topic_data, $post_data)) ? 'soft_delete' : 'delete') . "&amp;f={$post_data['forum_id']}&amp;p={$post_data['post_id']}" . $cp_param) : '';
68
+		return ($this->delete_allowed($post_data, $topic_data)) ? append_sid("{$this->phpbb_root_path}posting.$this->php_ext", 'mode='.(($this->softdelete_allowed($topic_data, $post_data)) ? 'soft_delete' : 'delete')."&amp;f={$post_data['forum_id']}&amp;p={$post_data['post_id']}".$cp_param) : '';
69 69
 	}
70 70
 
71 71
 	/**
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 	public function get_info_url(array $post_data)
86 86
 	{
87 87
 		$forum_id = $post_data['forum_id'];
88
-		return ($this->auth->acl_get('m_info', $forum_id)) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", "i=main&amp;mode=post_details&amp;f=$forum_id&amp;p=" . $post_data['post_id'], true, $this->user->session_id) : '';
88
+		return ($this->auth->acl_get('m_info', $forum_id)) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", "i=main&amp;mode=post_details&amp;f=$forum_id&amp;p=".$post_data['post_id'], true, $this->user->session_id) : '';
89 89
 	}
90 90
 
91 91
 	/**
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
 	 */
96 96
 	public function get_approve_url(array $post_data, $viewtopic_url)
97 97
 	{
98
-		return append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", "i=queue&amp;p={$post_data['post_id']}&amp;f={$post_data['forum_id']}&amp;redirect=" . urlencode(str_replace('&amp;', '&', $viewtopic_url . '&amp;p=' . $post_data['post_id'] . '#p' . $post_data['post_id'])));
98
+		return append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", "i=queue&amp;p={$post_data['post_id']}&amp;f={$post_data['forum_id']}&amp;redirect=".urlencode(str_replace('&amp;', '&', $viewtopic_url.'&amp;p='.$post_data['post_id'].'#p'.$post_data['post_id'])));
99 99
 	}
100 100
 
101 101
 	/**
@@ -124,7 +124,7 @@  discard block
 block discarded – undo
124 124
 	 */
125 125
 	public function get_mcp_report_url(array $post_data)
126 126
 	{
127
-		return ($this->auth->acl_get('m_report', $post_data['forum_id'])) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=reports&amp;mode=report_details&amp;f=' . $post_data['forum_id'] . '&amp;p=' . $post_data['post_id'], true, $this->user->session_id) : '';
127
+		return ($this->auth->acl_get('m_report', $post_data['forum_id'])) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=reports&amp;mode=report_details&amp;f='.$post_data['forum_id'].'&amp;p='.$post_data['post_id'], true, $this->user->session_id) : '';
128 128
 	}
129 129
 
130 130
 	/**
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
 	 */
135 135
 	public function get_mcp_restore_url(array $post_data, array $topic_data)
136 136
 	{
137
-		return ($this->auth->acl_get('m_approve', $post_data['forum_id'])) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=queue&amp;mode=' . (($topic_data['topic_visibility'] != ITEM_DELETED) ? 'deleted_posts' : 'deleted_topics') . '&amp;f=' . $post_data['forum_id'] . '&amp;p=' . $post_data['post_id'], true, $this->user->session_id) : '';
137
+		return ($this->auth->acl_get('m_approve', $post_data['forum_id'])) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=queue&amp;mode='.(($topic_data['topic_visibility'] != ITEM_DELETED) ? 'deleted_posts' : 'deleted_topics').'&amp;f='.$post_data['forum_id'].'&amp;p='.$post_data['post_id'], true, $this->user->session_id) : '';
138 138
 	}
139 139
 
140 140
 	/**
@@ -143,7 +143,7 @@  discard block
 block discarded – undo
143 143
 	 */
144 144
 	public function get_notes_url(array $post_data)
145 145
 	{
146
-		return ($this->auth->acl_getf_global('m_')) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=notes&amp;mode=user_notes&amp;u=' . $post_data['poster_id'], true, $this->user->session_id) : '';
146
+		return ($this->auth->acl_getf_global('m_')) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=notes&amp;mode=user_notes&amp;u='.$post_data['poster_id'], true, $this->user->session_id) : '';
147 147
 	}
148 148
 
149 149
 	/**
@@ -152,7 +152,7 @@  discard block
 block discarded – undo
152 152
 	 */
153 153
 	public function get_warning_url(array $post_data)
154 154
 	{
155
-		return ($this->auth->acl_get('m_warn') && !$this->user_is_poster($post_data['poster_id']) && $post_data['poster_id'] != ANONYMOUS) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=warn&amp;mode=warn_post&amp;f=' . $post_data['forum_id'] . '&amp;p=' . $post_data['post_id'], true, $this->user->session_id) : '';
155
+		return ($this->auth->acl_get('m_warn') && !$this->user_is_poster($post_data['poster_id']) && $post_data['poster_id'] != ANONYMOUS) ? append_sid("{$this->phpbb_root_path}mcp.$this->php_ext", 'i=warn&amp;mode=warn_post&amp;f='.$post_data['forum_id'].'&amp;p='.$post_data['post_id'], true, $this->user->session_id) : '';
156 156
 	}
157 157
 
158 158
 	/**
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
 		$cp_param = '';
269 269
 		if ($topic_data['topic_first_post_id'] == $post_data['post_id'])
270 270
 		{
271
-			$cp_param = '&amp;cp=' . ((!$cp_mode) ? (($this->user_is_poster($post_data['poster_id'])) ? 'ucp' : 'mcp') : $cp_mode);
271
+			$cp_param = '&amp;cp='.((!$cp_mode) ? (($this->user_is_poster($post_data['poster_id'])) ? 'ucp' : 'mcp') : $cp_mode);
272 272
 		}
273 273
 		return $cp_param;
274 274
 	}
Please login to merge, or discard this patch.
services/topic.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -229,7 +229,7 @@
 block discarded – undo
229 229
 	/**
230 230
 	 * @param array $topic_data
231 231
 	 * @param array $post_data
232
-	 * @return array
232
+	 * @return string
233 233
 	 */
234 234
 	 protected function get_mini_post_url(array $topic_data, array $post_data)
235 235
 	 {
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -235,10 +235,10 @@  discard block
 block discarded – undo
235 235
 	 {
236 236
 		if ($topic_data['topic_first_post_id'] === $post_data['post_id'])
237 237
 		{
238
-			return append_sid($topic_data['topic_url'], 'view=unread') . '#unread';
238
+			return append_sid($topic_data['topic_url'], 'view=unread').'#unread';
239 239
 		}
240 240
 
241
- 		return append_sid($topic_data['topic_url'], 'p=' . $post_data['post_id']) . '#p' . $post_data['post_id'];
241
+ 		return append_sid($topic_data['topic_url'], 'p='.$post_data['post_id']).'#p'.$post_data['post_id'];
242 242
 	 }
243 243
 
244 244
 	/**
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
 		$l_edited_by = $edit_reason = '';
252 252
 		if (($row['post_edit_count'] && $this->config['display_last_edited']) || $row['post_edit_reason'])
253 253
 		{
254
-			$display_username	= $users_cache[$row['poster_id']]['username_full'];
254
+			$display_username = $users_cache[$row['poster_id']]['username_full'];
255 255
 			$l_edited_by = $this->language->lang('EDITED_TIMES_TOTAL', (int) $row['post_edit_count'], $display_username, $this->user->format_date($row['post_edit_time'], false, true));
256 256
 			$edit_reason = $row['post_edit_reason'];
257 257
 		}
@@ -274,8 +274,8 @@  discard block
 block discarded – undo
274 274
 
275 275
 		if ($s_post_deleted && $row['post_delete_user'])
276 276
 		{
277
-			$display_postername	= $users_cache[$row['poster_id']]['username_full'];
278
-			$display_username	= $users_cache[$row['post_delete_user']]['username_full'];
277
+			$display_postername = $users_cache[$row['poster_id']]['username_full'];
278
+			$display_username = $users_cache[$row['post_delete_user']]['username_full'];
279 279
 
280 280
 			$l_deleted_message = $this->get_deleted_message();
281 281
 			$l_deleted_by = $this->language->lang('DELETED_INFORMATION', $display_username, $this->user->format_date($row['post_delete_time'], false, true));
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -301,8 +301,7 @@
 block discarded – undo
301 301
 		if ($row['post_delete_reason'])
302 302
 		{
303 303
 			return $this->language->lang('POST_DELETED_BY_REASON', $display_postername, $display_username, $this->user->format_date($row['post_delete_time'], false, true), $row['post_delete_reason']);
304
-		}
305
-		else
304
+		} else
306 305
 		{
307 306
 			return $this->language->lang('POST_DELETED_BY', $display_postername, $display_username, $this->user->format_date($row['post_delete_time'], false, true));
308 307
 		}
Please login to merge, or discard this patch.
services/views/driver/portal.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	 * @param string									$php_ext			php file extension
33 33
 	 * @param \phpbb\config\config						$config				Config object
34 34
 	 * @param \blitze\content\services\types			$content_types		Content types object
35
-	*/
35
+	 */
36 36
 	public function __construct(\phpbb\event\dispatcher_interface $phpbb_dispatcher, \phpbb\language\language $language, \phpbb\pagination $pagination, \phpbb\template\template $template, \blitze\content\services\fields $fields, \blitze\sitemaker\services\forum\data $forum, \blitze\content\services\helper $helper, \blitze\content\services\quickmod $quickmod, $phpbb_root_path, $php_ext, \phpbb\config\config $config, \blitze\content\services\types $content_types)
37 37
 	{
38 38
 		parent::__construct($phpbb_dispatcher, $language, $pagination, $template, $fields, $forum, $helper, $quickmod, $phpbb_root_path, $php_ext);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
117 117
 
118 118
 			foreach ($posts_data as $topic_id => $post_data)
119 119
 			{
120
-				$topic_data	= $topics_data[$topic_id];
120
+				$topic_data = $topics_data[$topic_id];
121 121
 				$topic = $this->fields->show($content_type, $topic_data, $post_data, $users_cache, $attachments, $update_count, $topic_tracking_info);
122 122
 
123 123
 				$this->template->assign_block_vars('topicrow', $topic);
Please login to merge, or discard this patch.
services/views/driver/base_view.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@
 block discarded – undo
54 54
 	 * @param \blitze\content\services\quickmod			$quickmod			Quick moderator tools
55 55
 	 * @param string									$phpbb_root_path	Path to the phpbb includes directory.
56 56
 	 * @param string									$php_ext			php file extension
57
-	*/
57
+	 */
58 58
 	public function __construct(\phpbb\event\dispatcher_interface $phpbb_dispatcher, \phpbb\language\language $language, \phpbb\pagination $pagination, \phpbb\template\template $template, \blitze\content\services\fields $fields, \blitze\sitemaker\services\forum\data $forum, \blitze\content\services\helper $helper, \blitze\content\services\quickmod $quickmod, $phpbb_root_path, $php_ext)
59 59
 	{
60 60
 		$this->phpbb_dispatcher = $phpbb_dispatcher;
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -148,8 +148,8 @@  discard block
 block discarded – undo
148 148
 		$update_count = array();
149 149
 		foreach ($posts_data as $topic_id => $posts)
150 150
 		{
151
-			$post_data	= array_shift($posts);
152
-			$topic_data	= $topics_data[$topic_id];
151
+			$post_data = array_shift($posts);
152
+			$topic_data = $topics_data[$topic_id];
153 153
 
154 154
 			$this->template->assign_block_vars('topicrow', array_merge(
155 155
 				$this->fields->show($content_type, $topic_data, $post_data, $users_cache, $attachments, $update_count, $topic_tracking_info),
@@ -249,8 +249,8 @@  discard block
 block discarded – undo
249 249
 		$this->pagination->generate_template_pagination(
250 250
 			array(
251 251
 				'routes' => array(
252
-					'blitze_content_' . $route,
253
-					'blitze_content_' . $route . '_page',
252
+					'blitze_content_'.$route,
253
+					'blitze_content_'.$route.'_page',
254 254
 				),
255 255
 				'params' => $params,
256 256
 			),
@@ -281,7 +281,7 @@  discard block
 block discarded – undo
281 281
 				'L_USER_ABOUT'			=> $this->language->lang('AUTHOR_INFO_EXPLAIN', $user_cache['username_full'], $user_cache['joined'], $user_content_topics, $content_langname, $user_cache['posts']),
282 282
 				'L_USER_VIEW_ALL'		=> $this->language->lang('VIEW_AUTHOR_CONTENTS', $content_langname, $user_cache['username']),
283 283
 				'L_SEARCH_USER_POSTS'	=> $this->language->lang('SEARCH_USER_POSTS', $user_cache['username']),
284
-				'U_SEARCH_CONTENTS'		=> append_sid("{$this->phpbb_root_path}search.{$this->php_ext}", "author={$user_cache['username']}&amp;" . urlencode('fid[]') . "=$forum_id&amp;sc=0&amp;sf=titleonly&amp;sr=topics")
284
+				'U_SEARCH_CONTENTS'		=> append_sid("{$this->phpbb_root_path}search.{$this->php_ext}", "author={$user_cache['username']}&amp;".urlencode('fid[]')."=$forum_id&amp;sc=0&amp;sf=titleonly&amp;sr=topics")
285 285
 			)));
286 286
 		}
287 287
 	}
@@ -301,7 +301,7 @@  discard block
 block discarded – undo
301 301
 				->fetch_forum($topic_data['forum_id'])
302 302
 				->fetch_topic_poster($topic_data['topic_poster'])
303 303
 				->fetch_custom(array(
304
-					'WHERE' => array('t.topic_id <> ' . (int) $topic_data['topic_id'])
304
+					'WHERE' => array('t.topic_id <> '.(int) $topic_data['topic_id'])
305 305
 				))->build(true, true, false);
306 306
 
307 307
 			$topics_data = $this->forum->get_topic_data(5);
Please login to merge, or discard this patch.
services/views/driver/tiles.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 	 * @param string									$phpbb_root_path	Path to the phpbb includes directory.
29 29
 	 * @param string									$php_ext			php file extension
30 30
 	 * @param \phpbb\request\request_interface			$request			Request object
31
-	*/
31
+	 */
32 32
 	public function __construct(\phpbb\event\dispatcher_interface $phpbb_dispatcher, \phpbb\language\language $language, \phpbb\pagination $pagination, \phpbb\template\template $template, \blitze\content\services\fields $fields, \blitze\sitemaker\services\forum\data $forum, \blitze\content\services\helper $helper, \blitze\content\services\quickmod $quickmod, $phpbb_root_path, $php_ext, \phpbb\request\request_interface $request)
33 33
 	{
34 34
 		parent::__construct($phpbb_dispatcher, $language, $pagination, $template, $fields, $forum, $helper, $quickmod, $phpbb_root_path, $php_ext);
Please login to merge, or discard this patch.