Completed
Pull Request — master (#5)
by Jakub
33:55
created
migrations/v10x/m5_end_date.php 1 patch
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -16,27 +16,27 @@  discard block
 block discarded – undo
16 16
 class m5_end_date extends \phpbb\db\migration\migration
17 17
 {
18 18
 	/**
19
-	* {@inheritDoc}
20
-	*/
19
+	 * {@inheritDoc}
20
+	 */
21 21
 	public function effectively_installed()
22 22
 	{
23 23
 		return $this->db_tools->sql_column_exists($this->table_prefix . 'ads', 'end_date');
24 24
 	}
25 25
 
26 26
 	/**
27
-	* {@inheritDoc}
28
-	*/
27
+	 * {@inheritDoc}
28
+	 */
29 29
 	static public function depends_on()
30 30
 	{
31 31
 		return array('\phpbb\admanagement\migrations\v10x\m4_indexes');
32 32
 	}
33 33
 
34 34
 	/**
35
-	* Add the end date to ads table
36
-	*
37
-	* @return array Array of table schema
38
-	* @access public
39
-	*/
35
+	 * Add the end date to ads table
36
+	 *
37
+	 * @return array Array of table schema
38
+	 * @access public
39
+	 */
40 40
 	public function update_schema()
41 41
 	{
42 42
 		return array(
@@ -49,11 +49,11 @@  discard block
 block discarded – undo
49 49
 	}
50 50
 
51 51
 	/**
52
-	* Drop the end date from ads table
53
-	*
54
-	* @return array Array of table schema
55
-	* @access public
56
-	*/
52
+	 * Drop the end date from ads table
53
+	 *
54
+	 * @return array Array of table schema
55
+	 * @access public
56
+	 */
57 57
 	public function revert_schema()
58 58
 	{
59 59
 		return array(
Please login to merge, or discard this patch.