mirror of
https://github.com/friendica/friendica
synced 2025-01-18 19:44:27 +00:00
Replace Network class names with FQCN
This commit is contained in:
parent
011c098c63
commit
899ac663fc
1 changed files with 2 additions and 3 deletions
|
@ -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],
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue