Documer\Storage\Memory::getWordCount PHP Method

getWordCount() public method

See also: Adapter::getWordCount()
public getWordCount ( $word )
    public function getWordCount($word)
    {
        $total = 0;
        foreach ($this->words as $w) {
            if ($w['word'] == $word) {
                $total++;
            }
        }
        return $total;
    }