Use new translation interface

parent 05c36840
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
namespace Modules\Translation\Repositories\File; namespace Modules\Translation\Repositories\File;
use Illuminate\Filesystem\Filesystem; use Illuminate\Filesystem\Filesystem;
use Illuminate\Translation\LoaderInterface; use Illuminate\Contracts\Translation\Loader;
use Modules\Translation\Repositories\FileTranslationRepository as FileTranslationRepositoryInterface; use Modules\Translation\Repositories\FileTranslationRepository as FileTranslationRepositoryInterface;
class FileTranslationRepository implements FileTranslationRepositoryInterface class FileTranslationRepository implements FileTranslationRepositoryInterface
...@@ -13,11 +13,11 @@ class FileTranslationRepository implements FileTranslationRepositoryInterface ...@@ -13,11 +13,11 @@ class FileTranslationRepository implements FileTranslationRepositoryInterface
*/ */
private $finder; private $finder;
/** /**
* @var LoaderInterface * @var Loader
*/ */
private $loader; private $loader;
public function __construct(Filesystem $finder, LoaderInterface $loader) public function __construct(Filesystem $finder, Loader $loader)
{ {
$this->finder = $finder; $this->finder = $finder;
$this->loader = $loader; $this->loader = $loader;
......
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