From efadab66c539bca3c1fd894443973e3c13ef0127 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 29 Dec 2019 21:51:16 -0500 Subject: [PATCH] Update wrong/missing references to classes --- mod/events.php | 2 -- src/Factory/SessionFactory.php | 1 - src/Model/GServer.php | 6 ++++-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/mod/events.php b/mod/events.php index 991d0cef7b..245ee34b30 100644 --- a/mod/events.php +++ b/mod/events.php @@ -19,9 +19,7 @@ use Friendica\DI; use Friendica\Model\Event; use Friendica\Model\Item; use Friendica\Model\Profile; -use Friendica\Module\Login; use Friendica\Module\Security\Login; -use Friendica\Util\ACLFormatter; use Friendica\Util\DateTimeFormat; use Friendica\Util\Strings; use Friendica\Util\Temporal; diff --git a/src/Factory/SessionFactory.php b/src/Factory/SessionFactory.php index c03f429dc9..25b4c17b1f 100644 --- a/src/Factory/SessionFactory.php +++ b/src/Factory/SessionFactory.php @@ -30,7 +30,6 @@ class SessionFactory * @param App\Mode $mode * @param App\BaseURL $baseURL * @param IConfiguration $config - * @param Cookie $cookie * @param Database $dba * @param ICache $cache * @param LoggerInterface $logger diff --git a/src/Model/GServer.php b/src/Model/GServer.php index 3fffd4ed4e..f17265a3a3 100644 --- a/src/Model/GServer.php +++ b/src/Model/GServer.php @@ -12,6 +12,7 @@ use Friendica\Core\Config; use Friendica\Core\Protocol; use Friendica\Database\DBA; use Friendica\Module\Register; +use Friendica\Network\CurlResult; use Friendica\Util\Network; use Friendica\Util\DateTimeFormat; use Friendica\Util\Strings; @@ -448,11 +449,12 @@ class GServer /** * Detect server type by using the nodeinfo data * - * @param string $url address of the server + * @param string $url address of the server + * @param CurlResult $curlResult * @return array Server data * @throws \Friendica\Network\HTTPException\InternalServerErrorException */ - private static function fetchNodeinfo(string $url, $curlResult) + private static function fetchNodeinfo(string $url, CurlResult $curlResult) { $nodeinfo = json_decode($curlResult->getBody(), true);