<?php

namespace Ads\Channel;

class Channel
{
    /**
     * $channel object.
     */
    protected $channel;

    /**
     * Constructor.
     */
    public function __construct(\Ads\Channel\Interfaces\ChannelRepositoryInterface $channel)
    {
        $this->channel = $channel;
    }

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