Completed
Push — develop ( 69e1c6...6a0b8a )
by Daniel
08:16
created
services/template/twig.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -13,17 +13,17 @@
 block discarded – undo
13 13
 {
14 14
 
15 15
 	/**
16
-	* Constructor.
17
-	*
18
-	* @param \phpbb\path_helper $path_helper
19
-	* @param \phpbb\config\config $config
20
-	* @param \phpbb\template\context $context template context
21
-	* @param \phpbb\template\twig\environment $twig_environment
22
-	* @param string $cache_path
23
-	* @param \phpbb\user|null $user
24
-	* @param array|\ArrayAccess $extensions
25
-	* @param \phpbb\extension\manager $extension_manager extension manager, if null then template events will not be invoked
26
-	*/
16
+	 * Constructor.
17
+	 *
18
+	 * @param \phpbb\path_helper $path_helper
19
+	 * @param \phpbb\config\config $config
20
+	 * @param \phpbb\template\context $context template context
21
+	 * @param \phpbb\template\twig\environment $twig_environment
22
+	 * @param string $cache_path
23
+	 * @param \phpbb\user|null $user
24
+	 * @param array|\ArrayAccess $extensions
25
+	 * @param \phpbb\extension\manager $extension_manager extension manager, if null then template events will not be invoked
26
+	 */
27 27
 	public function __construct(\phpbb\path_helper $path_helper, $config, \phpbb\template\context $context, \phpbb\template\twig\environment $twig_environment, $cache_path, \phpbb\user $user = null, $extensions = array(), \phpbb\extension\manager $extension_manager = null)
28 28
 	{
29 29
 		$this->path_helper = $path_helper;
Please login to merge, or discard this patch.
services/helper.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 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;
Please login to merge, or discard this patch.
services/comments.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@
 block discarded – undo
67 67
 	 * @param \blitze\content\services\topic			$topic				Content topic object
68 68
 	 * @param string									$root_path			Path to the phpbb includes directory.
69 69
 	 * @param string									$php_ext			php file extension
70
-	*/
70
+	 */
71 71
 	public function __construct(\phpbb\auth\auth $auth, \phpbb\config\db $config, \phpbb\content_visibility $content_visibility, \phpbb\db\driver\driver_interface $db, \phpbb\controller\helper $helper, \phpbb\pagination $pagination, \phpbb\request\request_interface $request, \phpbb\template\template $template, \phpbb\user $user, \blitze\content\services\form\form $form, \blitze\sitemaker\services\forum\data $forum, $root_path, $php_ext)
72 72
 	{
73 73
 		$this->auth = $auth;
Please login to merge, or discard this patch.
services/template_loader.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
 
89 89
 		return new \Twig_Source($source, $name);
90 90
 	}
91
-	*/
91
+	 */
92 92
 
93 93
 	/**
94 94
 	 * Twig_ExistsLoaderInterface as of Twig 1.11
Please login to merge, or discard this patch.
services/views/base_view.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 	 * @param \blitze\content\services\helper			$helper				Content helper object
47 47
 	 * @param string									$phpbb_root_path	Path to the phpbb includes directory.
48 48
 	 * @param string									$php_ext			php file extension
49
-	*/
49
+	 */
50 50
 	public function __construct(\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, $phpbb_root_path, $php_ext)
51 51
 	{
52 52
 		$this->language = $language;
Please login to merge, or discard this patch.
services/views/tiles.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
 	 * @param \blitze\content\services\helper			$helper				Content helper object
27 27
 	 * @param string									$phpbb_root_path	Path to the phpbb includes directory.
28 28
 	 * @param string									$php_ext			php file extension
29
-	*/
29
+	 */
30 30
 	public function __construct(\phpbb\language\language $language, \phpbb\pagination $pagination, \phpbb\request\request_interface $request, \phpbb\template\template $template, \blitze\content\services\fields $fields, \blitze\sitemaker\services\forum\data $forum, \blitze\content\services\helper $helper, $phpbb_root_path, $php_ext)
31 31
 	{
32 32
 		parent::__construct($language, $pagination, $template, $fields, $forum, $helper, $phpbb_root_path, $php_ext);
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
@@ -44,7 +44,7 @@
 block discarded – undo
44 44
 	 * @param \blitze\content\services\fields		$fields				Content fields object
45 45
 	 * @param string								$phpbb_root_path	Path to the phpbb includes directory.
46 46
 	 * @param string								$php_ext			php file extension
47
-	*/
47
+	 */
48 48
 	public function __construct(\phpbb\db\driver\driver_interface $db, \phpbb\controller\helper $helper, \phpbb\language\language $language, \blitze\content\services\types $content_types, \blitze\content\services\fields $fields, $phpbb_root_path, $php_ext)
49 49
 	{
50 50
 		$this->db = $db;
Please login to merge, or discard this patch.
event/posting.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 	 * Constructor
24 24
 	 *
25 25
 	 * @param \blitze\content\services\builder		$builder		Form builder object
26
-	*/
26
+	 */
27 27
 	public function __construct(\blitze\content\services\builder $builder)
28 28
 	{
29 29
 		$this->builder = $builder;
Please login to merge, or discard this patch.
controller/ucp_controller.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 	 *
23 23
 	 * @param \phpbb\language\language					$language			Language object
24 24
 	 * @param \blitze\content\services\action_handler	$action_handler		Handles actions
25
-	*/
25
+	 */
26 26
 	public function __construct(\phpbb\language\language $language, \blitze\content\services\action_handler $action_handler)
27 27
 	{
28 28
 		$this->language = $language;
Please login to merge, or discard this patch.