Completed
Pull Request — master (#15)
by Jakub
09:54 queued 02:55
created
migrations/v10x/m5_end_date.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -13,27 +13,27 @@  discard block
 block discarded – undo
13 13
 class m5_end_date 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 $this->db_tools->sql_column_exists($this->table_prefix . 'ads', 'ad_end_date');
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\m4_indexes');
29 29
 	}
30 30
 
31 31
 	/**
32
-	* Add the end date to ads table
33
-	*
34
-	* @return array Array of table schema
35
-	* @access public
36
-	*/
32
+	 * Add the end date to ads table
33
+	 *
34
+	 * @return array Array of table schema
35
+	 * @access public
36
+	 */
37 37
 	public function update_schema()
38 38
 	{
39 39
 		return array(
@@ -46,11 +46,11 @@  discard block
 block discarded – undo
46 46
 	}
47 47
 
48 48
 	/**
49
-	* Drop the end date from ads table
50
-	*
51
-	* @return array Array of table schema
52
-	* @access public
53
-	*/
49
+	 * Drop the end date from ads table
50
+	 *
51
+	 * @return array Array of table schema
52
+	 * @access public
53
+	 */
54 54
 	public function revert_schema()
55 55
 	{
56 56
 		return array(
Please login to merge, or discard this patch.