<?php

namespace Thang.luu\Word;

class Word
{
    /**
     * $words object.
     */
    protected $words;

    /**
     * Constructor.
     */
    public function __construct(\Thang.luu\Word\Interfaces\WordsRepositoryInterface $words)
    {
        $this->words = $words;
    }

    /**
     * Returns count of word.
     *
     * @param array $filter
     *
     * @return int
     */
    public function count()
    {
        return  0;
    }
}