diff options
author | Julius Härtl <jus@bitgrid.net> | 2019-09-06 13:59:41 +0200 |
---|---|---|
committer | Arthur Schiwon <blizzz@arthur-schiwon.de> | 2019-09-09 22:56:05 +0200 |
commit | 32279ed062b92e58c45cc87d0ecab41075cad3dc (patch) | |
tree | f949c55160710540e9f35fd8dce4c1b5f671c14c /apps/workflowengine/lib/Check/RequestTime.php | |
parent | 5891ec602f45cebd7d991814c2ca57929f9085ed (diff) | |
download | nextcloud-server-32279ed062b92e58c45cc87d0ecab41075cad3dc.tar.gz nextcloud-server-32279ed062b92e58c45cc87d0ecab41075cad3dc.zip |
Extend missing check classes
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/workflowengine/lib/Check/RequestTime.php')
-rw-r--r-- | apps/workflowengine/lib/Check/RequestTime.php | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/workflowengine/lib/Check/RequestTime.php b/apps/workflowengine/lib/Check/RequestTime.php index 0f5322b4759..79696583cdb 100644 --- a/apps/workflowengine/lib/Check/RequestTime.php +++ b/apps/workflowengine/lib/Check/RequestTime.php @@ -130,4 +130,17 @@ class RequestTime implements ICheck { public function isAvailableForScope(int $scope): bool { return true; } + + /** + * returns a list of Entities the checker supports. The values must match + * the class name of the entity. + * + * An empty result means the check is universally available. + * + * @since 18.0.0 + */ + public function supportedEntities(): array { + return []; + } + } |