Completed
Push — master ( b72c3c...9c6482 )
by Andrew
01:35
created
src/Text/WordStats.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
      */
15 15
     public function __construct($options = []) {
16 16
         foreach ($options as $key => $value) {
17
-            $method = 'set' . ucfirst($key);
17
+            $method = 'set'.ucfirst($key);
18 18
 
19 19
             if (method_exists($this, $method)) {
20 20
                 call_user_func([$this, $method], $value);
Please login to merge, or discard this patch.
src/Modules/Formatters/OutputFormatter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@
 block discarded – undo
165 165
             $headers = $topNode->find('h1, h2, h3, h4, h5, h6');
166 166
 
167 167
             foreach ($headers as $header) {
168
-                $header->replaceWith(new Text("\n\n" . $this->getTagCleanedText($header) . "\n\n"));
168
+                $header->replaceWith(new Text("\n\n".$this->getTagCleanedText($header)."\n\n"));
169 169
             }
170 170
         }
171 171
     }
Please login to merge, or discard this patch.