]> git.mxchange.org Git - friendica.git/commitdiff
spelling: repository
authorJosh Soref <2119212+jsoref@users.noreply.github.com>
Wed, 22 Mar 2023 04:08:15 +0000 (00:08 -0400)
committerJosh Soref <2119212+jsoref@users.noreply.github.com>
Sun, 26 Mar 2023 20:14:16 +0000 (16:14 -0400)
Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
src/Module/Security/TwoFactor/Trust.php

index 4b519cc97e31cf58fcab1ea6e840989d5e245b4a..31bd3e4cc3e8dfdf57b81b82e179cfba6f505452 100644 (file)
@@ -60,7 +60,7 @@ class Trust extends BaseModule
        /** @var TwoFactor\Repository\TrustedBrowser  */
        protected $trustedBrowserRepository;
 
-       public function __construct(App $app, Authentication $auth, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, IHandleUserSessions $session, Cookie $cookie, TwoFactor\Factory\TrustedBrowser $trustedBrowserFactory, TwoFactor\Repository\TrustedBrowser $trustedBrowserRepositoy, Response $response, array $server, array $parameters = [])
+       public function __construct(App $app, Authentication $auth, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, IHandleUserSessions $session, Cookie $cookie, TwoFactor\Factory\TrustedBrowser $trustedBrowserFactory, TwoFactor\Repository\TrustedBrowser $trustedBrowserRepository, Response $response, array $server, array $parameters = [])
        {
                parent::__construct($l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
 
@@ -69,7 +69,7 @@ class Trust extends BaseModule
                $this->session                  = $session;
                $this->cookie                   = $cookie;
                $this->trustedBrowserFactory    = $trustedBrowserFactory;
-               $this->trustedBrowserRepository = $trustedBrowserRepositoy;
+               $this->trustedBrowserRepository = $trustedBrowserRepository;
        }
 
        protected function post(array $request = [])