Completed
Pull Request — master (#16)
by Jakub
15:59
created
event/main_listener.php 1 patch
Indentation   +12 added lines, -12 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@  discard block
 block discarded – undo
42 42
 	protected $php_ext;
43 43
 
44 44
 	/**
45
-	* {@inheritdoc}
46
-	*/
45
+	 * {@inheritdoc}
46
+	 */
47 47
 	static public function getSubscribedEvents()
48 48
 	{
49 49
 		return array(
@@ -52,16 +52,16 @@  discard block
 block discarded – undo
52 52
 	}
53 53
 
54 54
 	/**
55
-	* Constructor
56
-	*
57
-	* @param \phpbb\template\template				$template			Template object
58
-	* @param \phpbb\user\user						$user				User object
59
-	* @param \phpbb\config\config					$config				Config object
60
-	* @param \phpbb\admanagement\ad\manager			$manager			Advertisement manager object
61
-	* @param \phpbb\admanagement\location\manager	$location_manager	Template location manager object
62
-	* @param string									$root_path			phpBB root path
63
-	* @param string									$php_ext			PHP extension
64
-	*/
55
+	 * Constructor
56
+	 *
57
+	 * @param \phpbb\template\template				$template			Template object
58
+	 * @param \phpbb\user\user						$user				User object
59
+	 * @param \phpbb\config\config					$config				Config object
60
+	 * @param \phpbb\admanagement\ad\manager			$manager			Advertisement manager object
61
+	 * @param \phpbb\admanagement\location\manager	$location_manager	Template location manager object
62
+	 * @param string									$root_path			phpBB root path
63
+	 * @param string									$php_ext			PHP extension
64
+	 */
65 65
 	public function __construct(\phpbb\template\template $template, \phpbb\user $user, \phpbb\config\config $config, \phpbb\admanagement\ad\manager $manager, \phpbb\admanagement\location\manager $location_manager, $root_path, $php_ext)
66 66
 	{
67 67
 		$this->template = $template;
Please login to merge, or discard this patch.
migrations/v10x/m6_hide_for_group.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -13,26 +13,26 @@
 block discarded – undo
13 13
 class m6_hide_for_group extends \phpbb\db\migration\migration
14 14
 {
15 15
 	/**
16
-	* {@inheritDoc}
17
-	*/
16
+	 * {@inheritDoc}
17
+	 */
18 18
 	public function effectively_installed()
19 19
 	{
20 20
 		return isset($this->config['phpbb_admanagement_hide_groups']);
21 21
 	}
22 22
 
23 23
 	/**
24
-	* {@inheritDoc}
25
-	*/
24
+	 * {@inheritDoc}
25
+	 */
26 26
 	static public function depends_on()
27 27
 	{
28 28
 		return array('\phpbb\admanagement\migrations\v10x\m5_end_date');
29 29
 	}
30 30
 
31 31
 	/**
32
-	* Add the ACP settings module
33
-	*
34
-	* @return array Array of data update instructions
35
-	*/
32
+	 * Add the ACP settings module
33
+	 *
34
+	 * @return array Array of data update instructions
35
+	 */
36 36
 	public function update_data()
37 37
 	{
38 38
 		return array(
Please login to merge, or discard this patch.