Skip to content

Commit

Permalink
Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
curry684 committed Mar 24, 2024
1 parent ce98514 commit 5470c4b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/Fixtures/AppBundle/Controller/ExporterController.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ public function exportAction(Request $request, DataTableFactory $dataTableFactor
}

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

public function exportEmptyDataTableAction(Request $request, DataTableFactory $dataTableFactory): Response
Expand Down
4 changes: 2 additions & 2 deletions tests/Unit/ColumnTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ public function testBoolColumn(): void
{
$column = new BoolColumn();
$column->initialize('test', 1, [
'trueValue' => 'yes',
'nullValue' => '<em>null</em>',
'trueValue' => 'yes',
'nullValue' => '<em>null</em>',
], $this->createDataTable());

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

0 comments on commit 5470c4b

Please sign in to comment.