Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Make adjustments based on the psalm messages
Signed-off-by: Hamid Dehnavi <[email protected]>
  • Loading branch information
shdehnavi committed Jul 16, 2023
commit 62e90d1975aff8126858c43b960223b7ccddb310
2 changes: 1 addition & 1 deletion lib/public/Remote/IInstance.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function getUrl();
public function getFullUrl();

/**
* @return string The full version string in '13.1.2.3' format
* @return string|null The full version string in '13.1.2.3' format
*
* @since 13.0.0
* @deprecated 23.0.0
Expand Down
8 changes: 4 additions & 4 deletions lib/public/Remote/IUser.php
Original file line number Diff line number Diff line change
Expand Up @@ -102,31 +102,31 @@ public function getGroups();
public function getLanguage();

/**
* @return int
* @return int|float
*
* @since 13.0.0
* @deprecated 23.0.0
*/
public function getUsedSpace();

/**
* @return int
* @return int|float
*
* @since 13.0.0
* @deprecated 23.0.0
*/
public function getFreeSpace();

/**
* @return int
* @return int|float
*
* @since 13.0.0
* @deprecated 23.0.0
*/
public function getTotalSpace();

/**
* @return int
* @return int|float
*
* @since 13.0.0
* @deprecated 23.0.0
Expand Down