}
/**
+ * Determines network name
+ *
* @param string $network network of the contact
* @param string $profile optional, default empty
* @param string $protocol (Optional) Protocol that is used for the transmission
- * @param int $gsid ??? (@TODO)
+ * @param int $gsid Server id
* @return string
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
- public static function networkToName(string $network, string $profile = '', string $protocol = '', int $gsid = 0): string
+ public static function networkToName(string $network, string $profile = '', string $protocol = '', int $gsid = null): string
{
$nets = [
Protocol::DFRN => DI::l10n()->t('DFRN'),
}
/**
+ * Determines network's icon name
+ *
* @param string $network network
* @param string $profile optional, default empty
- * @param int $gsid ??? (@TODO)
- * @return string
+ * @param int $gsid Server id
+ * @return string Name for network icon
* @throws \Exception
*/
- public static function networkToIcon(string $network, string $profile = "", int $gsid = 0): string
+ public static function networkToIcon(string $network, string $profile = "", int $gsid = null): string
{
$nets = [
Protocol::DFRN => 'friendica',
* @return boolean was the update successfull?
* @throws \Exception
*/
- public static function update($table, $fields, $condition, $old_fields = [], $params = [])
+ public static function update($table, array $fields, array $condition, $old_fields = [], array $params = [])
{
return DI::dba()->update($table, $fields, $condition, $old_fields, $params);
}
* @throws \Exception
* @see self::select
*/
- public static function selectFirst($table, array $fields = [], array $condition = [], $params = [])
+ public static function selectFirst($table, array $fields = [], array $condition = [], array $params = [])
{
return DI::dba()->selectFirst($table, $fields, $condition, $params);
}
* @return boolean
* @throws \Exception
*/
- public static function exists(array $conditions)
+ public static function exists(array $conditions): bool
{
return DBA::exists('attach', $conditions);
}
* @param array $fields Array of selected fields, empty for all
* @param array $condition Array of fields for condition
* @param array $params Array of several parameters
- * @return array
+ * @return array|bool
* @throws \Exception
*/
- public static function selectFirst(array $fields = [], array $condition = [], array $params = []): array
+ public static function selectFirst(array $fields = [], array $condition = [], array $params = [])
{
$contact = DBA::selectFirst('contact', $fields, $condition, $params);
* @return int
* @throws Exception
*/
- public static function getProtocol(int $gsid)
+ public static function getProtocol(int $gsid): int
{
if (empty($gsid)) {
return null;
* @throws \Exception
* @see \Friendica\Database\DBA::select
*/
- public static function getPhotosForUser($uid, $resourceid, array $conditions = [], array $params = [])
+ public static function getPhotosForUser(int $uid, string $resourceid, array $conditions = [], array $params = [])
{
$conditions["resource-id"] = $resourceid;
$conditions["uid"] = $uid;
* @return array|bool OStatus data or "false" on error or "true" on short mode
* @throws HTTPException\InternalServerErrorException
*/
- private static function ostatus($webfinger, $short = false)
+ private static function ostatus(array $webfinger, bool $short = false)
{
$data = [];
* @return string Formatted network name
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
- public static function formatNetworkName($network, $url = '')
+ public static function formatNetworkName(string $network, string $url = ''): string
{
if ($network != '') {
if ($url != '') {
return $network_name;
}
+
+ return '';
}
/**
*
* @return string Transformed string.
*/
- public static function deindent($text, $chr = "[\t ]", $count = NULL)
+ public static function deindent(string $text, string $chr = "[\t ]", int $count = null)
{
$lines = explode("\n", $text);