src/Service/WienerSachtextFormel3CalculatorFactory.php 1 location
|
@@ 37-43 (lines=7) @@
|
| 34 |
|
|
| 35 |
|
class WienerSachtextFormel3CalculatorFactory |
| 36 |
|
{ |
| 37 |
|
public static function getCalculator() |
| 38 |
|
{ |
| 39 |
|
return new WienerSachtextFormel3Calculator( |
| 40 |
|
new WordsWithNSyllablesPercentCalculator( |
| 41 |
|
WordsWithNSyllablesCounterFactory::getCalculator('de_DE', 3), |
| 42 |
|
new WordCounter() |
| 43 |
|
), |
| 44 |
|
new AverageSentenceLengthCalculator(new WordCounter(), new SentenceCounter()) |
| 45 |
|
); |
| 46 |
|
} |
src/Service/WienerSachtextFormel4CalculatorFactory.php 1 location
|
@@ 37-43 (lines=7) @@
|
| 34 |
|
|
| 35 |
|
class WienerSachtextFormel4CalculatorFactory |
| 36 |
|
{ |
| 37 |
|
public static function getCalculator() |
| 38 |
|
{ |
| 39 |
|
return new WienerSachtextFormel4Calculator( |
| 40 |
|
new WordsWithNSyllablesPercentCalculator( |
| 41 |
|
WordsWithNSyllablesCounterFactory::getCalculator('de_DE', 3), |
| 42 |
|
new WordCounter() |
| 43 |
|
), |
| 44 |
|
new AverageSentenceLengthCalculator(new WordCounter(), new SentenceCounter()) |
| 45 |
|
); |
| 46 |
|
} |