mirror of
https://github.com/friendica/friendica
synced 2025-04-16 23:59:03 +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 Dice\Dice;
|
||||||
use Friendica\Network;
|
|
||||||
use Friendica\Util;
|
use Friendica\Util;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -263,8 +262,8 @@ return (function(string $basepath, array $getVars, array $serverVars, array $coo
|
||||||
['create', [], Dice::CHAIN_CALL],
|
['create', [], Dice::CHAIN_CALL],
|
||||||
],
|
],
|
||||||
],
|
],
|
||||||
Network\HTTPClient\Capability\ICanSendHttpRequests::class => [
|
\Friendica\Network\HTTPClient\Capability\ICanSendHttpRequests::class => [
|
||||||
'instanceOf' => Network\HTTPClient\Factory\HttpClient::class,
|
'instanceOf' => \Friendica\Network\HTTPClient\Factory\HttpClient::class,
|
||||||
'call' => [
|
'call' => [
|
||||||
['createClient', [], Dice::CHAIN_CALL],
|
['createClient', [], Dice::CHAIN_CALL],
|
||||||
],
|
],
|
||||||
|
|
Loading…
Add table
Reference in a new issue