Completed
Pull Request — master (#72)
by Jakub
22:06 queued 13:15
created
location/type/base.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -16,9 +16,9 @@  discard block
 block discarded – undo
16 16
 abstract class base implements type_interface
17 17
 {
18 18
 	/**
19
-	* User object
20
-	* @var \phpbb\user
21
-	*/
19
+	 * User object
20
+	 * @var \phpbb\user
21
+	 */
22 22
 	protected $user;
23 23
 
24 24
 	/**
@@ -28,11 +28,11 @@  discard block
 block discarded – undo
28 28
 	protected $language;
29 29
 
30 30
 	/**
31
-	* Construct a template location object
32
-	*
33
-	* @param	\phpbb\user					$user		User object
34
-	* @param	\phpbb\language\language	$language	Language object
35
-	*/
31
+	 * Construct a template location object
32
+	 *
33
+	 * @param	\phpbb\user					$user		User object
34
+	 * @param	\phpbb\language\language	$language	Language object
35
+	 */
36 36
 	public function __construct(\phpbb\user $user, \phpbb\language\language $language)
37 37
 	{
38 38
 		$this->user = $user;
@@ -40,24 +40,24 @@  discard block
 block discarded – undo
40 40
 	}
41 41
 
42 42
 	/**
43
-	* {@inheritDoc}
44
-	*/
43
+	 * {@inheritDoc}
44
+	 */
45 45
 	public function get_name()
46 46
 	{
47 47
 		return $this->language->lang('AD_' . strtoupper($this->get_id()));
48 48
 	}
49 49
 
50 50
 	/**
51
-	* {@inheritDoc}
52
-	*/
51
+	 * {@inheritDoc}
52
+	 */
53 53
 	public function get_desc()
54 54
 	{
55 55
 		return $this->language->lang('AD_' . strtoupper($this->get_id()) . '_DESC');
56 56
 	}
57 57
 
58 58
 	/**
59
-	* {@inheritDoc}
60
-	*/
59
+	 * {@inheritDoc}
60
+	 */
61 61
 	public function will_display()
62 62
 	{
63 63
 		return true;
Please login to merge, or discard this patch.