Passed
Push — release-3.0.0 ( 4d9055...2010c1 )
by Daniel
07:48
created
services/helper.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
 	 * @param \phpbb\user			$user				User object
26 26
 	 * @param string				$phpbb_root_path	Path to the phpbb includes directory.
27 27
 	 * @param string				$php_ext			php file extension
28
-	*/
28
+	 */
29 29
 	public function __construct(\phpbb\auth\auth $auth, \phpbb\config\db $config, \phpbb\user $user, $phpbb_root_path, $php_ext)
30 30
 	{
31 31
 		parent::__construct($auth, $config, $user);
Please login to merge, or discard this patch.
model/entity/type.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -309,10 +309,10 @@
 block discarded – undo
309 309
 		$detail_fields = $this->get_template_fields($detail_fields, $this->detail_tpl, $fields);
310 310
 
311 311
 		$this->summary_fields	= array_intersect_key($field_types, array_flip($summary_fields));
312
-		$this->detail_fields	= array_intersect_key($field_types, array_flip($detail_fields));
312
+		$this->detail_fields = array_intersect_key($field_types, array_flip($detail_fields));
313 313
 
314 314
 		$this->content_fields	= $content_fields;
315
-		$this->field_types		= $field_types;
315
+		$this->field_types = $field_types;
316 316
 	}
317 317
 
318 318
 	/**
Please login to merge, or discard this patch.
event/listener.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
 	 * @param \phpbb\language\language				$language			Language object
34 34
 	 * @param \blitze\content\services\types		$content_types		Content types object
35 35
 	 * @param string								$php_ext			php file extension
36
-	*/
36
+	 */
37 37
 	public function __construct(\phpbb\controller\helper $helper, \phpbb\language\language $language, \blitze\content\services\types $content_types, $php_ext)
38 38
 	{
39 39
 		$this->helper = $helper;
Please login to merge, or discard this patch.
event/feed.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
 	 * @param \phpbb\db\driver\driver_interface		$db					Database connection
33 33
 	 * @param \phpbb\template\template				$template			Template object
34 34
 	 * @param \blitze\content\services\types		$content_types		Content types object
35
-	*/
35
+	 */
36 36
 	public function __construct(\phpbb\config\config $config, \phpbb\db\driver\driver_interface $db, \phpbb\template\template $template, \blitze\content\services\types $content_types)
37 37
 	{
38 38
 		$this->config = $config;
Please login to merge, or discard this patch.
services/actions/type/delete.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
 	 * @param \blitze\sitemaker\model\mapper_factory	$sitemaker_mapper_factory	Sitemaker Mapper factory object
62 62
 	 * @param bool										$auto_refresh				Used during testing
63 63
 	 * @param bool										$trigger_error				Used during testing
64
-	*/
64
+	 */
65 65
 	public function __construct(\phpbb\cache\driver\driver_interface $cache, \phpbb\language\language $language, \phpbb\log\log_interface $logger, \phpbb\request\request_interface $request, \phpbb\user $user, \blitze\content\services\types $content_types, \blitze\sitemaker\services\forum\manager $forum_manager, \blitze\content\model\mapper_factory $content_mapper_factory, \blitze\sitemaker\model\mapper_factory $sitemaker_mapper_factory, $auto_refresh = true, $trigger_error = true)
66 66
 	{
67 67
 		$this->cache = $cache;
Please login to merge, or discard this patch.
services/topic/driver/author_contents.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	 * @param \phpbb\template\template					$template			Template object
31 31
 	 * @param \blitze\content\services\fields			$fields				Content fields object
32 32
 	 * @param \blitze\sitemaker\services\forum\data		$forum				Forum Data object
33
-	*/
33
+	 */
34 34
 	public function __construct(\phpbb\language\language $language, \phpbb\template\template $template, \blitze\content\services\fields $fields, \blitze\sitemaker\services\forum\data $forum)
35 35
 	{
36 36
 		$this->language = $language;
Please login to merge, or discard this patch.
services/topic/driver/author_info.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
 	 * @param \phpbb\template\template					$template			Template object
31 31
 	 * @param \blitze\sitemaker\services\forum\data		$forum				Forum Data object
32 32
 	 * @param \blitze\content\services\helper			$helper				Content helper object
33
-	*/
33
+	 */
34 34
 	public function __construct(\phpbb\language\language $language, \phpbb\template\template $template, \blitze\sitemaker\services\forum\data $forum, \blitze\content\services\helper $helper)
35 35
 	{
36 36
 		$this->language = $language;
Please login to merge, or discard this patch.
services/views/driver/portal.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
 	 * @param \blitze\content\services\topic\blocks_factory		$topic_blocks_factory	Topic blocks factory object
32 32
 	 * @param \phpbb\config\config								$config					Config object
33 33
 	 * @param \blitze\content\services\types					$content_types			Content types object
34
-	*/
34
+	 */
35 35
 	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, \blitze\content\services\topic\blocks_factory $topic_blocks_factory, \phpbb\config\config $config, \blitze\content\services\types $content_types)
36 36
 	{
37 37
 		parent::__construct($phpbb_dispatcher, $language, $pagination, $template, $fields, $forum, $helper, $quickmod, $topic_blocks_factory);
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
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
 	 * @param \blitze\content\services\quickmod					$quickmod				Quick moderator tools
28 28
 	 * @param \blitze\content\services\topic\blocks_factory		$topic_blocks_factory	Topic blocks factory object
29 29
 	 * @param \phpbb\request\request_interface					$request				Request object
30
-	*/
30
+	 */
31 31
 	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, \blitze\content\services\topic\blocks_factory $topic_blocks_factory, \phpbb\request\request_interface $request)
32 32
 	{
33 33
 		parent::__construct($phpbb_dispatcher, $language, $pagination, $template, $fields, $forum, $helper, $quickmod, $topic_blocks_factory);
Please login to merge, or discard this patch.