1 | <?php |
||
5 | class Resource |
||
6 | { |
||
7 | |||
8 | /** |
||
9 | * Array containing the Spache word list, if set. |
||
10 | * @var array|boolean |
||
11 | */ |
||
12 | static protected $arrSpache = false; |
||
13 | |||
14 | /** |
||
15 | * Array containing the Dale-Chall word list, if set. |
||
16 | * @var array|boolean |
||
17 | */ |
||
18 | static protected $arrDaleChall = false; |
||
19 | |||
20 | /** |
||
21 | * Fetch the list of Spache easy words |
||
22 | * @return array |
||
23 | */ |
||
24 | public static function fetchSpacheWordList() |
||
37 | |||
38 | /** |
||
39 | * Fetch the list of Dale-Chall easy words |
||
40 | * @return array |
||
41 | */ |
||
42 | public static function fetchDaleChallWordList() |
||
55 | } |
||
56 |