Skip to content
This repository was archived by the owner on Oct 20, 2025. It is now read-only.

Commit b36acb5

Browse files
committed
2 parents a8dd444 + b586d63 commit b36acb5

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/Components/Lazy.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ public function render()
2929

3030
return $this->splade->isLazyRequest()
3131
? implode([
32-
'<!--START-SPLADE-LAZY-'.$key.'-->',
32+
'<!--START-SPLADE-LAZY-' . $key . '-->',
3333
'{{ $slot }}',
34-
'<!--END-SPLADE-LAZY-'.$key.'-->',
34+
'<!--END-SPLADE-LAZY-' . $key . '-->',
3535
]) : view('splade::functional.lazy', [
3636
'name' => $key,
3737
]);

src/Components/Rehydrate.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ public function render()
3232

3333
return $this->splade->isRehydrateRequest()
3434
? implode([
35-
'<!--START-SPLADE-REHYDRATE-'.$key.'-->',
35+
'<!--START-SPLADE-REHYDRATE-' . $key . '-->',
3636
'{{ $slot }}',
37-
'<!--END-SPLADE-REHYDRATE-'.$key.'-->',
37+
'<!--END-SPLADE-REHYDRATE-' . $key . '-->',
3838
]) : view('splade::functional.rehydrate', [
3939
'name' => $key,
40-
'on' => $this->on,
40+
'on' => $this->on,
4141
]);
4242
}
4343
}

src/Http/PrepareViewWithRehydrateComponents.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function registerMacro(): self
3535

3636
$placeholder = $placeholderMatches[0][0] ?? '';
3737

38-
if (! $placeholder) {
38+
if (!$placeholder) {
3939
return;
4040
}
4141

0 commit comments

Comments
 (0)