Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/UpdateCheck/ReleaseChannel.php')
-rw-r--r--core/UpdateCheck/ReleaseChannel.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/core/UpdateCheck/ReleaseChannel.php b/core/UpdateCheck/ReleaseChannel.php
index b398ea22c3..0744378623 100644
--- a/core/UpdateCheck/ReleaseChannel.php
+++ b/core/UpdateCheck/ReleaseChannel.php
@@ -34,6 +34,15 @@ abstract class ReleaseChannel
abstract public function getName();
/**
+ * Whether only stable versions are wanted or also beta versions.
+ * @return bool
+ */
+ public function doesPreferStable()
+ {
+ return true;
+ }
+
+ /**
* Get the latest available version number for this release channel. Eg '2.15.0-b4' or '2.15.0'. Should be
* a semantic version number in format MAJOR.MINOR.PATCH (http://semver.org/). Returning an empty string in case
* one cannot connect to the remote server can be acceptable.