mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Document all getIncomplete implementations as returning string|false
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
parent
cb271b759e
commit
7ae6791737
3 changed files with 3 additions and 3 deletions
|
|
@ -267,7 +267,7 @@ class CacheJail extends CacheWrapper {
|
|||
* use the one with the highest id gives the best result with the background scanner, since that is most
|
||||
* likely the folder where we stopped scanning previously
|
||||
*
|
||||
* @return string|bool the path of the folder or false when no folder matched
|
||||
* @return string|false the path of the folder or false when no folder matched
|
||||
*/
|
||||
public function getIncomplete() {
|
||||
// not supported
|
||||
|
|
|
|||
|
|
@ -267,7 +267,7 @@ class CacheWrapper extends Cache {
|
|||
* use the one with the highest id gives the best result with the background scanner, since that is most
|
||||
* likely the folder where we stopped scanning previously
|
||||
*
|
||||
* @return string|bool the path of the folder or false when no folder matched
|
||||
* @return string|false the path of the folder or false when no folder matched
|
||||
*/
|
||||
public function getIncomplete() {
|
||||
return $this->getCache()->getIncomplete();
|
||||
|
|
|
|||
|
|
@ -243,7 +243,7 @@ interface ICache {
|
|||
* use the one with the highest id gives the best result with the background scanner, since that is most
|
||||
* likely the folder where we stopped scanning previously
|
||||
*
|
||||
* @return string|bool the path of the folder or false when no folder matched
|
||||
* @return string|false the path of the folder or false when no folder matched
|
||||
* @since 9.0.0
|
||||
*/
|
||||
public function getIncomplete();
|
||||
|
|
|
|||
Loading…
Reference in a new issue