Passed
Branch refactor-markdown-helper (ffdce7)
by Caen
06:11
created
packages/framework/src/Services/MarkdownConverterService.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 block discarded – undo
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
     }
Please login to merge, or discard this patch.