From 899ac663fc46dba52aea5cb70e75ba583524f32f Mon Sep 17 00:00:00 2001 From: Art4 Date: Mon, 23 Dec 2024 14:34:23 +0000 Subject: [PATCH] Replace Network class names with FQCN --- static/dependencies.config.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/static/dependencies.config.php b/static/dependencies.config.php index 437307e599..4840996d26 100644 --- a/static/dependencies.config.php +++ b/static/dependencies.config.php @@ -24,7 +24,6 @@ */ use Dice\Dice; -use Friendica\Network; use Friendica\Util; /** @@ -263,8 +262,8 @@ return (function(string $basepath, array $getVars, array $serverVars, array $coo ['create', [], Dice::CHAIN_CALL], ], ], - Network\HTTPClient\Capability\ICanSendHttpRequests::class => [ - 'instanceOf' => Network\HTTPClient\Factory\HttpClient::class, + \Friendica\Network\HTTPClient\Capability\ICanSendHttpRequests::class => [ + 'instanceOf' => \Friendica\Network\HTTPClient\Factory\HttpClient::class, 'call' => [ ['createClient', [], Dice::CHAIN_CALL], ],