@@ -29,7 +29,6 @@ |
||
29 | 29 | use Org\Heigl\Hyphenator\Hyphenator; |
30 | 30 | use Org\Heigl\Hyphenator\Options; |
31 | 31 | use Org_Heigl\TextStatistics\Calculator\SentenceMaxSyllablesCalculator; |
32 | -use Org_Heigl\TextStatistics\Calculator\SyllableCounter; |
|
33 | 32 | use Org_Heigl\TextStatistics\Util\SyllableFilter; |
34 | 33 | |
35 | 34 | class SentenceMaxSyllablesCalculatorFactory |
@@ -37,10 +37,10 @@ |
||
37 | 37 | { |
38 | 38 | $o = new Options(); |
39 | 39 | $o->setDefaultLocale($locale) |
40 | - ->setRightMin(2) |
|
41 | - ->setLeftMin(2) |
|
42 | - ->setWordMin(4) |
|
43 | - ->setTokenizers('Whitespace', 'Punctuation'); |
|
40 | + ->setRightMin(2) |
|
41 | + ->setLeftMin(2) |
|
42 | + ->setWordMin(4) |
|
43 | + ->setTokenizers('Whitespace', 'Punctuation'); |
|
44 | 44 | |
45 | 45 | $hyphenator = new Hyphenator(); |
46 | 46 | $hyphenator->setOptions($o); |