Completed
Pull Request — master (#79)
by Matt
02:36
created
event/listener.php 1 patch
Indentation   +30 added lines, -30 removed lines patch added patch discarded remove patch
@@ -27,13 +27,13 @@  discard block
 block discarded – undo
27 27
 	protected $user;
28 28
 
29 29
 	/**
30
-	* Constructor
31
-	*
32
-	* @param \phpbb\config\config        $config             Config object
33
-	* @param \phpbb\template\template    $template           Template object
34
-	* @param \phpbb\user                 $user               User object
35
-	* @access public
36
-	*/
30
+	 * Constructor
31
+	 *
32
+	 * @param \phpbb\config\config        $config             Config object
33
+	 * @param \phpbb\template\template    $template           Template object
34
+	 * @param \phpbb\user                 $user               User object
35
+	 * @access public
36
+	 */
37 37
 	public function __construct(\phpbb\config\config $config, \phpbb\template\template $template, \phpbb\user $user)
38 38
 	{
39 39
 		$this->config = $config;
@@ -42,12 +42,12 @@  discard block
 block discarded – undo
42 42
 	}
43 43
 
44 44
 	/**
45
-	* Assign functions defined in this class to event listeners in the core
46
-	*
47
-	* @return array
48
-	* @static
49
-	* @access public
50
-	*/
45
+	 * Assign functions defined in this class to event listeners in the core
46
+	 *
47
+	 * @return array
48
+	 * @static
49
+	 * @access public
50
+	 */
51 51
 	static public function getSubscribedEvents()
52 52
 	{
53 53
 		return array(
@@ -58,11 +58,11 @@  discard block
 block discarded – undo
58 58
 	}
59 59
 
60 60
 	/**
61
-	* Load Google Analytics js code
62
-	*
63
-	* @return void
64
-	* @access public
65
-	*/
61
+	 * Load Google Analytics js code
62
+	 *
63
+	 * @return void
64
+	 * @access public
65
+	 */
66 66
 	public function load_google_analytics()
67 67
 	{
68 68
 		$this->template->assign_vars(array(
@@ -73,12 +73,12 @@  discard block
 block discarded – undo
73 73
 	}
74 74
 
75 75
 	/**
76
-	* Add config vars to ACP Board Settings
77
-	*
78
-	* @param \phpbb\event\data $event The event object
79
-	* @return void
80
-	* @access public
81
-	*/
76
+	 * Add config vars to ACP Board Settings
77
+	 *
78
+	 * @param \phpbb\event\data $event The event object
79
+	 * @return void
80
+	 * @access public
81
+	 */
82 82
 	public function add_googleanalytics_configs($event)
83 83
 	{
84 84
 		// Add a config to the settings mode, after warnings_expire_days
@@ -117,12 +117,12 @@  discard block
 block discarded – undo
117 117
 	}
118 118
 
119 119
 	/**
120
-	* Validate the Google Analytics ID
121
-	*
122
-	* @param \phpbb\event\data $event The event object
123
-	* @return void
124
-	* @access public
125
-	*/
120
+	 * Validate the Google Analytics ID
121
+	 *
122
+	 * @param \phpbb\event\data $event The event object
123
+	 * @return void
124
+	 * @access public
125
+	 */
126 126
 	public function validate_googleanalytics_id($event)
127 127
 	{
128 128
 		$input = isset($event['cfg_array']['googleanalytics_id']) ? $event['cfg_array']['googleanalytics_id'] : '';
Please login to merge, or discard this patch.