Passed
Push — main ( 05b1ca...cdc05c )
by Corinna
54s queued 14s
created
src/DataAccess/Migrations/Version20241113164504.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare( strict_types=1 );
3
+declare(strict_types=1);
4 4
 
5 5
 namespace WMDE\Fundraising\AddressChangeContext\DataAccess\Migrations;
6 6
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
 	public function down( Schema $schema ): void {
28 28
 		$addressChange = $schema->getTable( 'address_change' );
29
-		$addressChange->modifyColumn( 'current_identifier', [ 'notnull' => false ] );
30
-		$addressChange->modifyColumn( 'previous_identifier', [ 'notnull' => false ] );
29
+		$addressChange->modifyColumn( 'current_identifier', ['notnull' => false] );
30
+		$addressChange->modifyColumn( 'previous_identifier', ['notnull' => false] );
31 31
 	}
32 32
 }
Please login to merge, or discard this patch.