Skip to content

Commit efae78a

Browse files
lrljoegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 0304d9a commit efae78a

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/Traits/ComponentUtilities.php

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
use Livewire\Attributes\Locked;
88
use Rappasoft\LaravelLivewireTables\Exceptions\DataTableConfigurationException;
99
use Rappasoft\LaravelLivewireTables\Traits\Configuration\ComponentConfiguration;
10-
use Rappasoft\LaravelLivewireTables\Traits\Helpers\ComponentHelpers;
1110
use Rappasoft\LaravelLivewireTables\Traits\Core\QueryStrings\HasQueryString;
11+
use Rappasoft\LaravelLivewireTables\Traits\Helpers\ComponentHelpers;
1212

1313
trait ComponentUtilities
1414
{
@@ -86,8 +86,7 @@ public function bootedComponentUtilities(): void
8686

8787
protected function runCoreConfiguration(): void
8888
{
89-
if (!$this->hasRunConfigure)
90-
{
89+
if (! $this->hasRunConfigure) {
9190
// Fire Lifecycle Hooks for configuring
9291
$this->callHook('configuring');
9392
$this->callTraitHook('configuring');
@@ -98,7 +97,7 @@ protected function runCoreConfiguration(): void
9897
// Fire Lifecycle Hooks for configured
9998
$this->callHook('configured');
10099
$this->callTraitHook('configured');
101-
100+
102101
$this->hasRunConfigure = true;
103102

104103
}

0 commit comments

Comments
 (0)