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