Commit af819cc4 authored by Nicolas Widart's avatar Nicolas Widart

Squashed 'Modules/Setting/' changes from 7ec6f67..e875263

e875263 Change construct signature

git-subtree-dir: Modules/Setting
git-subtree-split: e87526365a204921145055e41d37d0f504906d0f
parent d9f227d5
<?php namespace Modules\Setting\Support; <?php namespace Modules\Setting\Support;
use Illuminate\Contracts\Cache\Repository; use Illuminate\Cache\CacheManager;
use Modules\Core\Contracts\Setting; use Modules\Core\Contracts\Setting;
use Modules\Setting\Repositories\SettingRepository; use Modules\Setting\Repositories\SettingRepository;
...@@ -17,9 +17,9 @@ class Settings implements Setting ...@@ -17,9 +17,9 @@ class Settings implements Setting
/** /**
* @param SettingRepository $setting * @param SettingRepository $setting
* @param Repository $cache * @param CacheManager $cache
*/ */
public function __construct(SettingRepository $setting, Repository $cache) public function __construct(SettingRepository $setting, CacheManager $cache)
{ {
$this->setting = $setting; $this->setting = $setting;
$this->cache = $cache; $this->cache = $cache;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment