Completed
Push — master ( 4a9a55...d75acf )
by Andreas
03:15 queued 01:14
created
src/Calculator/CachingWordsWithNCharsCounter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $plain = $text->getPlainText();
38 38
         $hash  = sha1($plain);
39 39
 
40
-        if (! isset( static::$cache[$hash])) {
40
+        if (!isset(static::$cache[$hash])) {
41 41
             $result = parent::calculate($text);
42 42
             static::$cache[$hash] = $result;
43 43
         }
Please login to merge, or discard this patch.
src/Calculator/CachingSyllableCounter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $plain = $text->getPlainText();
38 38
         $hash  = sha1($plain);
39 39
 
40
-        if (! isset( static::$cache[$hash])) {
40
+        if (!isset(static::$cache[$hash])) {
41 41
             $result = parent::calculate($text);
42 42
             static::$cache[$hash] = $result;
43 43
         }
Please login to merge, or discard this patch.
src/Calculator/CachingWordsWithNSyllablesCounter.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
         $plain = $text->getPlainText();
38 38
         $hash  = sha1($plain);
39 39
 
40
-        if (! isset( static::$cache[$hash])) {
40
+        if (!isset(static::$cache[$hash])) {
41 41
             $result = parent::calculate($text);
42 42
             static::$cache[$hash] = $result;
43 43
         }
Please login to merge, or discard this patch.
src/Service/WordsWithNSyllablesCounterFactory.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@
 block discarded – undo
38 38
     {
39 39
         $o = new Options();
40 40
         $o->setDefaultLocale($locale)
41
-          ->setRightMin(2)
42
-          ->setLeftMin(2)
43
-          ->setWordMin(4)
44
-          ->setTokenizers('Whitespace, Punctuation');
41
+            ->setRightMin(2)
42
+            ->setLeftMin(2)
43
+            ->setWordMin(4)
44
+            ->setTokenizers('Whitespace, Punctuation');
45 45
 
46 46
         $hyphenator = new Hyphenator();
47 47
         $hyphenator->setOptions($o);
Please login to merge, or discard this patch.
src/Service/WordsWithNSyllablesOnlyCounterFactory.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@
 block discarded – undo
38 38
     {
39 39
         $o = new Options();
40 40
         $o->setDefaultLocale($locale)
41
-          ->setRightMin(2)
42
-          ->setLeftMin(2)
43
-          ->setWordMin(4)
44
-          ->setTokenizers('Whitespace, Punctuation');
41
+            ->setRightMin(2)
42
+            ->setLeftMin(2)
43
+            ->setWordMin(4)
44
+            ->setTokenizers('Whitespace, Punctuation');
45 45
 
46 46
         $hyphenator = new Hyphenator();
47 47
         $hyphenator->setOptions($o);
Please login to merge, or discard this patch.
src/Service/SyllableCounterFactory.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,10 +38,10 @@
 block discarded – undo
38 38
     {
39 39
         $o = new Options();
40 40
         $o->setDefaultLocale($locale)
41
-          ->setRightMin(2)
42
-          ->setLeftMin(2)
43
-          ->setWordMin(4)
44
-          ->setTokenizers('Whitespace, Punctuation');
41
+            ->setRightMin(2)
42
+            ->setLeftMin(2)
43
+            ->setWordMin(4)
44
+            ->setTokenizers('Whitespace, Punctuation');
45 45
 
46 46
         $hyphenator = new Hyphenator();
47 47
         $hyphenator->setOptions($o);
Please login to merge, or discard this patch.