Completed
Pull Request — master (#6830)
by
unknown
70:59 queued 63:20
created
tests/Doctrine/Tests/ORM/Tools/SchemaToolTest.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -109,15 +109,15 @@
 block discarded – undo
109 109
         $this->assertTrue($tableBoard->hasColumn('category_id'));
110 110
 
111 111
         $this->assertSame(
112
-         $tableCategory->getColumn('id')->getFixed(),
113
-         $tableBoard->getColumn('category_id')->getFixed(),
114
-         'Foreign key/join column should have the same value of option `fixed` as the referenced column'
112
+            $tableCategory->getColumn('id')->getFixed(),
113
+            $tableBoard->getColumn('category_id')->getFixed(),
114
+            'Foreign key/join column should have the same value of option `fixed` as the referenced column'
115 115
         );
116 116
 
117 117
         $this->assertEquals(
118
-         $tableCategory->getColumn('id')->getCustomSchemaOptions(),
119
-         $tableBoard->getColumn('category_id')->getCustomSchemaOptions(),
120
-         'Foreign key/join column should have the same custom options as the referenced column'
118
+            $tableCategory->getColumn('id')->getCustomSchemaOptions(),
119
+            $tableBoard->getColumn('category_id')->getCustomSchemaOptions(),
120
+            'Foreign key/join column should have the same custom options as the referenced column'
121 121
         );
122 122
 
123 123
         $this->assertNotEmpty(
Please login to merge, or discard this patch.