Skip to content

Commit

Permalink
Use new translation interface
Browse files Browse the repository at this point in the history
  • Loading branch information
nWidart committed Sep 9, 2017
1 parent 05c3684 commit d6dca69
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
namespace Modules\Translation\Repositories\File;

use Illuminate\Filesystem\Filesystem;
use Illuminate\Translation\LoaderInterface;
use Illuminate\Contracts\Translation\Loader;
use Modules\Translation\Repositories\FileTranslationRepository as FileTranslationRepositoryInterface;

class FileTranslationRepository implements FileTranslationRepositoryInterface
Expand All @@ -13,11 +13,11 @@ class FileTranslationRepository implements FileTranslationRepositoryInterface
*/
private $finder;
/**
* @var LoaderInterface
* @var Loader
*/
private $loader;

public function __construct(Filesystem $finder, LoaderInterface $loader)
public function __construct(Filesystem $finder, Loader $loader)
{
$this->finder = $finder;
$this->loader = $loader;
Expand Down

0 comments on commit d6dca69

Please sign in to comment.