<?php namespace Tewst\Tewst; class Tewst { /** * $test object. */ protected $test; /** * Constructor. */ public function __construct(\Tewst\Tewst\Interfaces\TestRepositoryInterface $test) { $this->test = $test; } /** * Returns count of tewst. * * @param array $filter * * @return int */ public function count() { return 0; } }