DaveChild\TextStatistics\Resource::fetchSpacheWordList PHP Method

fetchSpacheWordList() public static method

Fetch the list of Spache easy words
public static fetchSpacheWordList ( ) : array
return array
    public static function fetchSpacheWordList()
    {
        if (is_array(self::$arrSpache)) {
            return self::$arrSpache;
        }
        // Fetch Spache Words
        $arrSpacheWordList = array();
        include_once 'resources/SpacheWordList.php';
        self::$arrSpache = $arrSpacheWordList;
        return $arrSpacheWordList;
    }