1: <?php
2:
3: /**
4: * Defines the interface for Language strategies.
5: * Create your own language strategy to load the TeX files from a different
6: * source. i.e. filenaming system, database or remote server.
7: */
8: interface Syllable_Source_Interface
9: {
10:
11: public function getMinHyphens();
12:
13: public function getPatterns();
14:
15: public function getMaxPattern();
16:
17: public function getHyphentations();
18: }
19: