Skip to content

Commit e04db14

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 741343b commit e04db14

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

src/Views/Columns/Traits/HasFooter.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,17 +53,16 @@ public function getFooterCallback()
5353

5454
public function footerCallbackIsString(): bool
5555
{
56-
if(!$this->hasFooterCallback())
57-
{
56+
if (! $this->hasFooterCallback()) {
5857
return false;
5958
}
59+
6060
return is_string($this->getFooterCallback());
6161
}
6262

6363
public function footerCallbackIsFilter(): bool
6464
{
65-
if(!$this->hasFooterCallback())
66-
{
65+
if (! $this->hasFooterCallback()) {
6766
return false;
6867
}
6968

src/Views/Columns/Traits/HasSecondaryHeader.php

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,7 @@ public function getSecondaryHeaderCallback(): mixed
5050

5151
public function secondaryHeaderCallbackIsString(): bool
5252
{
53-
if(!$this->hasSecondaryHeaderCallback())
54-
{
53+
if (! $this->hasSecondaryHeaderCallback()) {
5554
return false;
5655
}
5756

@@ -60,8 +59,7 @@ public function secondaryHeaderCallbackIsString(): bool
6059

6160
public function secondaryHeaderCallbackIsFilter(): bool
6261
{
63-
if(!$this->hasSecondaryHeaderCallback())
64-
{
62+
if (! $this->hasSecondaryHeaderCallback()) {
6563
return false;
6664
}
6765

0 commit comments

Comments
 (0)