Skip to content

Commit

Permalink
resovle
Browse files Browse the repository at this point in the history
  • Loading branch information
imorland committed Nov 19, 2024
1 parent 696f6fd commit ad4c7f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/core/src/Foundation/AbstractValidator.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,11 +55,11 @@ public function addConfiguration($callable)
* @param Factory $validator
* @param TranslatorInterface $translator
*/
public function __construct(Factory $validator, TranslatorInterface $translator, Cache $cache)
public function __construct(Factory $validator, TranslatorInterface $translator)
{
$this->validator = $validator;
$this->translator = $translator;
$this->cache = $cache;
$this->cache = resolve(Cache::class);
}

/**
Expand Down

0 comments on commit ad4c7f1

Please sign in to comment.