Skip to content

Commit 0dd60c8

Browse files
yajraStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 14a192d commit 0dd60c8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

tests/Integration/QueryDataTableTest.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -259,17 +259,17 @@ protected function setUp()
259259
$route->get('/query/xss-add', function (DataTables $dataTable) {
260260
return $dataTable->query(DB::table('users'))
261261
->addColumn('foo', '<a href="#">Allowed</a>')
262-
->addColumn('bar', function() {
263-
return '<a href="#">Allowed</a>';
262+
->addColumn('bar', function () {
263+
return '<a href="#">Allowed</a>';
264264
})
265265
->toJson();
266266
});
267267

268268
$route->get('/query/xss-edit', function (DataTables $dataTable) {
269269
return $dataTable->query(DB::table('users'))
270270
->editColumn('name', '<a href="#">Allowed</a>')
271-
->editColumn('email', function() {
272-
return '<a href="#">Allowed</a>';
271+
->editColumn('email', function () {
272+
return '<a href="#">Allowed</a>';
273273
})
274274
->toJson();
275275
});
@@ -278,8 +278,8 @@ protected function setUp()
278278
return $dataTable->query(DB::table('users'))
279279
->addColumn('foo', '<a href="#">Allowed</a>')
280280
->editColumn('name', '<a href="#">Allowed</a>')
281-
->editColumn('email', function() {
282-
return '<a href="#">Allowed</a>';
281+
->editColumn('email', function () {
282+
return '<a href="#">Allowed</a>';
283283
})
284284
->rawColumns(['name', 'email'])
285285
->toJson();

0 commit comments

Comments
 (0)