From: Art4 Date: Mon, 23 Dec 2024 14:32:47 +0000 (+0000) Subject: Replace Model class names with FQCN X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=011c098c6316b9fa06a734fe0d0e164e95efeedc;p=friendica.git Replace Model class names with FQCN --- diff --git a/static/dependencies.config.php b/static/dependencies.config.php index 7a37d5e8bc..437307e599 100644 --- a/static/dependencies.config.php +++ b/static/dependencies.config.php @@ -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], ]