@@ -169,7 +169,8 @@ public function testCSVExportWithSpecialCharacters()
169169 'mixed_field ' => 'Text with "quotes", commas, and\nnewlines '
170170 ]);
171171
172- $ csvDestination ->testableImport ([$ row ], function ($ resources ) {});
172+ $ csvDestination ->testableImport ([$ row ], function ($ resources ) {
173+ });
173174 $ csvDestination ->shutdown ();
174175
175176 $ csvFile = $ csvDestination ->getLocalRoot () . '/test_db_test_table_id.csv ' ;
@@ -215,7 +216,8 @@ public function testCSVExportWithArrays()
215216 'nested ' => [['id ' => 1 ], ['id ' => 2 ]]
216217 ]);
217218
218- $ csvDestination ->testableImport ([$ row ], function ($ resources ) {});
219+ $ csvDestination ->testableImport ([$ row ], function ($ resources ) {
220+ });
219221 $ csvDestination ->shutdown ();
220222
221223 $ csvFile = $ csvDestination ->getLocalRoot () . '/test_db_test_table_id.csv ' ;
@@ -262,7 +264,8 @@ public function testCSVExportWithNullValues()
262264 'false_bool ' => false
263265 ]);
264266
265- $ csvDestination ->testableImport ([$ row ], function ($ resources ) {});
267+ $ csvDestination ->testableImport ([$ row ], function ($ resources ) {
268+ });
266269 $ csvDestination ->shutdown ();
267270
268271 $ csvFile = $ csvDestination ->getLocalRoot () . '/test_db_test_table_id.csv ' ;
@@ -309,7 +312,8 @@ public function testCSVExportWithAllowedAttributes()
309312 'secret ' => 'should_not_appear '
310313 ]);
311314
312- $ csvDestination ->testableImport ([$ row ], function ($ resources ) {});
315+ $ csvDestination ->testableImport ([$ row ], function ($ resources ) {
316+ });
313317 $ csvDestination ->shutdown ();
314318
315319 $ csvFile = $ csvDestination ->getLocalRoot () . '/test_db_test_table_id.csv ' ;
@@ -365,7 +369,8 @@ public function testCSVExportImportCompatibility()
365369 $ row = new Row ('compat_row ' , $ table , $ originalData );
366370 $ row ->setPermissions (['read("user:123") ' ]);
367371
368- $ csvDestination ->testableImport ([$ row ], function ($ resources ) {});
372+ $ csvDestination ->testableImport ([$ row ], function ($ resources ) {
373+ });
369374 $ csvDestination ->shutdown ();
370375
371376 // Verify the exported CSV can be parsed by PHP's built-in CSV functions
0 commit comments