@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | |
55 | 55 | public function addExtension(string $extensionClassName): void |
56 | 56 | { |
57 | - if (! in_array($extensionClassName, $this->extensions)) { |
|
57 | + if (!in_array($extensionClassName, $this->extensions)) { |
|
58 | 58 | $this->extensions[] = $extensionClassName; |
59 | 59 | } |
60 | 60 | } |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | |
157 | 157 | public function addFeature(string $feature): static |
158 | 158 | { |
159 | - if (! in_array($feature, $this->features)) { |
|
159 | + if (!in_array($feature, $this->features)) { |
|
160 | 160 | $this->features[] = $feature; |
161 | 161 | } |
162 | 162 | |
@@ -208,7 +208,7 @@ discard block |
||
208 | 208 | |
209 | 209 | protected function determineIfTorchlightAttributionShouldBeInjected(): bool |
210 | 210 | { |
211 | - return ! $this->isDocumentationPage() |
|
211 | + return !$this->isDocumentationPage() |
|
212 | 212 | && config('torchlight.attribution.enabled', true) |
213 | 213 | && str_contains($this->html, 'Syntax highlighted by torchlight.dev'); |
214 | 214 | } |