Skip to content

Commit 4173b9b

Browse files
committed
Style CI
1 parent 1fe302d commit 4173b9b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/QueryDataTable.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -633,7 +633,7 @@ protected function defaultOrdering(): void
633633

634634
if ($this->hasOrderColumn($orderable['name'])) {
635635
$this->applyOrderColumn($orderable['name'], $orderable);
636-
} else if ($this->hasOrderColumn($column)) {
636+
} elseif ($this->hasOrderColumn($column)) {
637637
$this->applyOrderColumn($column, $orderable);
638638
} else {
639639
$nullsLastSql = $this->getNullsLastSql($column, $orderable['direction']);

tests/Integration/CustomOrderTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class CustomOrderTest extends TestCase
1212
use DatabaseTransactions;
1313

1414
/** @test */
15-
function it_can_order_with_custom_order()
15+
public function it_can_order_with_custom_order()
1616
{
1717
$response = $this->getJsonResponse([
1818
'order' => [

0 commit comments

Comments
 (0)