Completed
Pull Request — master (#5)
by Andreas
02:52
created
src/Calculator/FleschReadingEaseCalculatorGerman.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -38,13 +38,13 @@
 block discarded – undo
38 38
  */
39 39
 class FleschReadingEaseCalculatorGerman extends FleschReadingEaseCalculator
40 40
 {
41
-     /**
42
-     * Do the actual calculation of a statistic
43
-     *
44
-     * @param Text $text
45
-     *
46
-     * @return mixed
47
-     */
41
+        /**
42
+         * Do the actual calculation of a statistic
43
+         *
44
+         * @param Text $text
45
+         *
46
+         * @return mixed
47
+         */
48 48
     public function calculate(Text $text)
49 49
     {
50 50
         return 180 -
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.