Skip to content

Commit 5470c4b

Browse files
committed
Code style
1 parent ce98514 commit 5470c4b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tests/Fixtures/AppBundle/Controller/ExporterController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ public function exportAction(Request $request, DataTableFactory $dataTableFactor
6262
}
6363

6464
return $this->render('@App/exporter.html.twig', [
65-
'datatable' => $table,
66-
]);
65+
'datatable' => $table,
66+
]);
6767
}
6868

6969
public function exportEmptyDataTableAction(Request $request, DataTableFactory $dataTableFactory): Response

tests/Unit/ColumnTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,8 +84,8 @@ public function testBoolColumn(): void
8484
{
8585
$column = new BoolColumn();
8686
$column->initialize('test', 1, [
87-
'trueValue' => 'yes',
88-
'nullValue' => '<em>null</em>',
87+
'trueValue' => 'yes',
88+
'nullValue' => '<em>null</em>',
8989
], $this->createDataTable());
9090

9191
$this->assertSame('yes', $column->transform(5));

0 commit comments

Comments
 (0)