Skip to content

Commit 32334b0

Browse files
yajraStyleCIBot
authored andcommitted
Apply fixes from StyleCI
1 parent 7551746 commit 32334b0

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/Html/Builder.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
namespace Yajra\DataTables\Html;
44

5-
use Collective\Html\HtmlBuilder;
6-
use Illuminate\Contracts\Config\Repository;
7-
use Illuminate\Contracts\View\Factory;
85
use Illuminate\Support\Arr;
6+
use Illuminate\Support\Str;
7+
use Collective\Html\HtmlBuilder;
98
use Illuminate\Support\Collection;
109
use Illuminate\Support\HtmlString;
11-
use Illuminate\Support\Str;
10+
use Illuminate\Contracts\View\Factory;
1211
use Illuminate\Support\Traits\Macroable;
12+
use Illuminate\Contracts\Config\Repository;
1313

1414
class Builder
1515
{
@@ -532,7 +532,7 @@ public function table(array $attributes = [], $drawFooter = false, $drawSearch =
532532
$tableHtml = '<table ' . $htmlAttr . '>';
533533
$searchHtml = $drawSearch ? '<tr class="search-filter">' . implode('',
534534
$this->compileTableSearchHeaders()) . '</tr>' : '';
535-
$tableHtml .= '<thead><tr>' . implode('', $th) . '</tr>' . $searchHtml . '</thead>';
535+
$tableHtml .= '<thead><tr>' . implode('', $th) . '</tr>' . $searchHtml . '</thead>';
536536
if ($drawFooter) {
537537
$tf = $this->compileTableFooter();
538538
$tableHtml .= '<tfoot><tr>' . implode('', $tf) . '</tr></tfoot>';

0 commit comments

Comments
 (0)