Completed
Pull Request — master (#4)
by Jakub
05:56
created
location/type/below_header.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 class below_header extends base
14 14
 {
15 15
 	/**
16
-	* {@inheritDoc}
17
-	*/
16
+	 * {@inheritDoc}
17
+	 */
18 18
 	public function get_id()
19 19
 	{
20 20
 		return 'below_header';
Please login to merge, or discard this patch.
location/type/after_first_post.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,16 +13,16 @@
 block discarded – undo
13 13
 class after_first_post extends base
14 14
 {
15 15
 	/**
16
-	* {@inheritDoc}
17
-	*/
16
+	 * {@inheritDoc}
17
+	 */
18 18
 	public function get_id()
19 19
 	{
20 20
 		return 'after_first_post';
21 21
 	}
22 22
 
23 23
 	/**
24
-	* {@inheritDoc}
25
-	*/
24
+	 * {@inheritDoc}
25
+	 */
26 26
 	public function will_display()
27 27
 	{
28 28
 		return strpos($this->user->page['page_name'], 'viewtopic') !== false;
Please login to merge, or discard this patch.
location/type/after_profile.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,16 +13,16 @@
 block discarded – undo
13 13
 class after_profile extends base
14 14
 {
15 15
 	/**
16
-	* {@inheritDoc}
17
-	*/
16
+	 * {@inheritDoc}
17
+	 */
18 18
 	public function get_id()
19 19
 	{
20 20
 		return 'after_profile';
21 21
 	}
22 22
 
23 23
 	/**
24
-	* {@inheritDoc}
25
-	*/
24
+	 * {@inheritDoc}
25
+	 */
26 26
 	public function will_display()
27 27
 	{
28 28
 		return strpos($this->user->page['page_name'], 'memberlist') !== false && strpos($this->user->page['query_string'], 'viewprofile') !== false;
Please login to merge, or discard this patch.
location/type/before_profile.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,16 +13,16 @@
 block discarded – undo
13 13
 class before_profile extends base
14 14
 {
15 15
 	/**
16
-	* {@inheritDoc}
17
-	*/
16
+	 * {@inheritDoc}
17
+	 */
18 18
 	public function get_id()
19 19
 	{
20 20
 		return 'before_profile';
21 21
 	}
22 22
 
23 23
 	/**
24
-	* {@inheritDoc}
25
-	*/
24
+	 * {@inheritDoc}
25
+	 */
26 26
 	public function will_display()
27 27
 	{
28 28
 		return strpos($this->user->page['page_name'], 'memberlist') !== false && strpos($this->user->page['query_string'], 'viewprofile') !== false;
Please login to merge, or discard this patch.
location/type/after_not_first_post.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,16 +13,16 @@
 block discarded – undo
13 13
 class after_not_first_post extends base
14 14
 {
15 15
 	/**
16
-	* {@inheritDoc}
17
-	*/
16
+	 * {@inheritDoc}
17
+	 */
18 18
 	public function get_id()
19 19
 	{
20 20
 		return 'after_not_first_post';
21 21
 	}
22 22
 
23 23
 	/**
24
-	* {@inheritDoc}
25
-	*/
24
+	 * {@inheritDoc}
25
+	 */
26 26
 	public function will_display()
27 27
 	{
28 28
 		return strpos($this->user->page['page_name'], 'viewtopic') !== false;
Please login to merge, or discard this patch.
location/type/below_footer.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,8 +13,8 @@
 block discarded – undo
13 13
 class below_footer extends base
14 14
 {
15 15
 	/**
16
-	* {@inheritDoc}
17
-	*/
16
+	 * {@inheritDoc}
17
+	 */
18 18
 	public function get_id()
19 19
 	{
20 20
 		return 'below_footer';
Please login to merge, or discard this patch.
event/main_listener.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@  discard block
 block discarded – undo
48 48
 	protected $ad_preview;
49 49
 
50 50
 	/**
51
-	* {@inheritdoc}
52
-	*/
51
+	 * {@inheritdoc}
52
+	 */
53 53
 	static public function getSubscribedEvents()
54 54
 	{
55 55
 		return array(
@@ -58,17 +58,17 @@  discard block
 block discarded – undo
58 58
 	}
59 59
 
60 60
 	/**
61
-	* Constructor
62
-	*
63
-	* @param \phpbb\request\request					$request			Request object
64
-	* @param \phpbb\template\template				$template			Template object
65
-	* @param \phpbb\user							$user				User object
66
-	* @param \phpbb\config\config					$config				Config object
67
-	* @param \phpbb\admanagement\ad\manager			$manager			Advertisement manager object
68
-	* @param \phpbb\admanagement\location\manager	$location_manager	Template location manager object
69
-	* @param string									$root_path			phpBB root path
70
-	* @param string									$php_ext			PHP extension
71
-	*/
61
+	 * Constructor
62
+	 *
63
+	 * @param \phpbb\request\request					$request			Request object
64
+	 * @param \phpbb\template\template				$template			Template object
65
+	 * @param \phpbb\user							$user				User object
66
+	 * @param \phpbb\config\config					$config				Config object
67
+	 * @param \phpbb\admanagement\ad\manager			$manager			Advertisement manager object
68
+	 * @param \phpbb\admanagement\location\manager	$location_manager	Template location manager object
69
+	 * @param string									$root_path			phpBB root path
70
+	 * @param string									$php_ext			PHP extension
71
+	 */
72 72
 	public function __construct(\phpbb\request\request $request, \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)
73 73
 	{
74 74
 		$this->request = $request;
Please login to merge, or discard this patch.