Completed
Push — develop ( fd370c...e87922 )
by Daniel
09:46 queued 07:22
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/actions/type/pre_delete.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\language\language					$language			Language Object
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\db $config, \phpbb\language\language $language, \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/add.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -43,7 +43,7 @@
 block discarded – undo
43 43
 	 * @param \blitze\sitemaker\services\auto_lang				$auto_lang				Auto add lang file
44 44
 	 * @param \blitze\content\services\form\fields_factory		$fields_factory			Fields factory  object
45 45
 	 * @param \blitze\content\services\views\views_factory		$views_factory			Views factory object
46
-	*/
46
+	 */
47 47
 	public function __construct(\phpbb\language\language $language, \phpbb\template\template $template, \phpbb\user $user, \blitze\sitemaker\services\auto_lang $auto_lang, \blitze\content\services\form\fields_factory $fields_factory, \blitze\content\services\views\views_factory $views_factory)
48 48
 	{
49 49
 		$this->language = $language;
Please login to merge, or discard this patch.
services/actions/type/index.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 string								$phpbb_root_path		Path to the phpbb includes directory.
45 45
 	 * @param string								$relative_admin_path	Relative admin root path
46 46
 	 * @param string								$php_ext				php file extension
47
-	*/
47
+	 */
48 48
 	public function __construct(\phpbb\controller\helper $helper, \phpbb\language\language $language, \phpbb\template\template $template, \blitze\content\services\types $content_types, $phpbb_root_path, $relative_admin_path, $php_ext)
49 49
 	{
50 50
 		$this->helper = $helper;
Please login to merge, or discard this patch.
services/actions/type/edit.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 \blitze\content\services\form\fields_factory		$fields_factory			Fields factory  object
33 33
 	 * @param \blitze\content\model\mapper_factory				$mapper_factory			Mapper factory object
34 34
 	 * @param \blitze\content\services\views\views_factory		$views_factory			Views factory object
35
-	*/
35
+	 */
36 36
 	public function __construct(\phpbb\auth\auth $auth, \phpbb\language\language $language, \phpbb\template\template $template, \phpbb\user $user, \blitze\sitemaker\services\auto_lang $auto_lang, \blitze\content\services\types $content_types, \blitze\content\services\form\fields_factory $fields_factory, \blitze\content\model\mapper_factory $mapper_factory, \blitze\content\services\views\views_factory $views_factory)
37 37
 	{
38 38
 		parent::__construct($language, $template, $user, $auto_lang, $fields_factory, $views_factory);
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.