Commit e77a5a3d authored by Nicolas Widart's avatar Nicolas Widart

Merge commit 'af819cc4'

* commit 'af819cc4':
  Squashed 'Modules/Setting/' changes from 7ec6f67..e875263
parents 692f3f86 af819cc4
<?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