Fixed tests.

This commit is contained in:
James Cole
2015-05-16 16:04:51 +02:00
parent 66c2951594
commit c576902501
4 changed files with 29 additions and 158 deletions

View File

@@ -22,17 +22,13 @@ class ReportController extends Controller
/** @var ReportHelperInterface */
protected $helper;
/** @var ReportQueryInterface */
protected $query;
/**
* @param ReportHelperInterface $helper
* @param ReportQueryInterface $query
*/
public function __construct(ReportHelperInterface $helper, ReportQueryInterface $query)
public function __construct(ReportHelperInterface $helper)
{
parent::__construct();
$this->query = $query;
$this->helper = $helper;
View::share('title', trans('firefly.reports'));