]> git.mxchange.org Git - friendica.git/commitdiff
Replace Model class names with FQCN
authorArt4 <art4@wlabs.de>
Mon, 23 Dec 2024 14:32:47 +0000 (14:32 +0000)
committerArt4 <art4@wlabs.de>
Mon, 23 Dec 2024 14:32:47 +0000 (14:32 +0000)
static/dependencies.config.php

index 7a37d5e8bc9145377cd01e8bfdb813609c323bd9..437307e599790dd63859d4ab94ef65409d1d143f 100644 (file)
@@ -24,8 +24,6 @@
  */
 
 use Dice\Dice;
-use Friendica\Model\User\Cookie;
-use Friendica\Model\Log\ParsedLogIterator;
 use Friendica\Network;
 use Friendica\Util;
 
@@ -248,7 +246,7 @@ return (function(string $basepath, array $getVars, array $serverVars, array $coo
        \Friendica\Core\Session\Capability\IHandleUserSessions::class => [
                'instanceOf' => \Friendica\Core\Session\Model\UserSession::class,
        ],
-       Cookie::class => [
+       \Friendica\Model\User\Cookie::class => [
                'constructParams' => [
                        $cookieVars,
                ],
@@ -271,7 +269,7 @@ return (function(string $basepath, array $getVars, array $serverVars, array $coo
                        ['createClient', [], Dice::CHAIN_CALL],
                ],
        ],
-       ParsedLogIterator::class => [
+       \Friendica\Model\Log\ParsedLogIterator::class => [
                'constructParams' => [
                        [Dice::INSTANCE => Util\ReversedFileReader::class],
                ]