File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed
lib/internal/Magento/Framework/Setup/Test/Unit Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,7 @@ public function testCreateTable()
125
125
'nullable ' => false ,
126
126
'default ' => 'CURRENT_TIMESTAMP ' ,
127
127
'disabled ' => false ,
128
- 'onCreate ' => NULL ,
128
+ 'onCreate ' => null ,
129
129
],
130
130
'integer ' =>
131
131
[
@@ -135,9 +135,9 @@ public function testCreateTable()
135
135
'unsigned ' => false ,
136
136
'nullable ' => false ,
137
137
'identity ' => true ,
138
- 'default ' => NULL ,
138
+ 'default ' => null ,
139
139
'disabled ' => false ,
140
- 'onCreate ' => NULL ,
140
+ 'onCreate ' => null ,
141
141
],
142
142
'decimal ' =>
143
143
[
@@ -147,9 +147,9 @@ public function testCreateTable()
147
147
'precision ' => '25 ' ,
148
148
'unsigned ' => false ,
149
149
'nullable ' => false ,
150
- 'default ' => NULL ,
150
+ 'default ' => null ,
151
151
'disabled ' => false ,
152
- 'onCreate ' => NULL ,
152
+ 'onCreate ' => null ,
153
153
],
154
154
],
155
155
$ tables ['First_Module ' ]['new_table ' ]['columns ' ]
Original file line number Diff line number Diff line change @@ -143,6 +143,7 @@ public function schemaListenerTablesDataProvider()
143
143
]
144
144
]
145
145
],
146
+ // @codingStandardsIgnoreStart
146
147
'XMLResult ' => '<?xml version="1.0"?>
147
148
<schema xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
148
149
xsi:noNamespaceSchemaLocation="urn:magento:framework:Setup/Declaration/Schema/etc/schema.xsd">
@@ -161,6 +162,7 @@ public function schemaListenerTablesDataProvider()
161
162
</index>
162
163
</table>
163
164
</schema> '
165
+ // @codingStandardsIgnoreEnd
164
166
]
165
167
];
166
168
}
You can’t perform that action at this time.
0 commit comments