Skip to content

Commit 85396fa

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 13d5c13 commit 85396fa

File tree

5 files changed

+6
-10
lines changed

5 files changed

+6
-10
lines changed

src/Traits/Helpers/SecondaryHeaderHelpers.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ trait SecondaryHeaderHelpers
99
#[Computed]
1010
public function shouldShowSecondaryHeader(): bool
1111
{
12-
return ($this->secondaryHeaderIsEnabled() && $this->hasColumnsWithSecondaryHeader());
12+
return $this->secondaryHeaderIsEnabled() && $this->hasColumnsWithSecondaryHeader();
1313
}
1414

1515
public function hasColumnsWithSecondaryHeader(): bool

src/Traits/WithReordering.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,15 +49,11 @@ public function setupReordering(): void
4949

5050
public function enablePaginatedReordering(): void {}
5151

52-
5352
public function toggleReordering(): void
5453
{
55-
if($this->currentlyReorderingStatus)
56-
{
54+
if ($this->currentlyReorderingStatus) {
5755
$this->disableReordering();
58-
}
59-
else
60-
{
56+
} else {
6157
$this->enableReordering();
6258
}
6359
}

src/Views/Columns/ColorColumn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
use Rappasoft\LaravelLivewireTables\Exceptions\DataTableConfigurationException;
77
use Rappasoft\LaravelLivewireTables\Views\Column;
88
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\Configuration\ColorColumnConfiguration;
9-
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\Helpers\ColorColumnHelpers;
109
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\{HasDefaultStringValue, IsColumn};
10+
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\Helpers\ColorColumnHelpers;
1111

1212
class ColorColumn extends Column
1313
{

src/Views/Columns/ComponentColumn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
use Rappasoft\LaravelLivewireTables\Exceptions\DataTableConfigurationException;
99
use Rappasoft\LaravelLivewireTables\Views\Column;
1010
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\Configuration\ComponentColumnConfiguration;
11-
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\Helpers\ComponentColumnHelpers;
1211
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\{HasComponentView,HasSlot};
12+
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\Helpers\ComponentColumnHelpers;
1313

1414
class ComponentColumn extends Column
1515
{

src/Views/Columns/DateColumn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
use Rappasoft\LaravelLivewireTables\Exceptions\DataTableConfigurationException;
1010
use Rappasoft\LaravelLivewireTables\Views\Column;
1111
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\Configuration\DateColumnConfiguration;
12-
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\Helpers\DateColumnHelpers;
1312
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\{HasInputOutputFormat, IsColumn};
13+
use Rappasoft\LaravelLivewireTables\Views\Columns\Traits\Helpers\DateColumnHelpers;
1414

1515
class DateColumn extends Column
1616
{

0 commit comments

Comments
 (0)