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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/autoloader.php8
-rw-r--r--lib/private/Updater.php27
-rw-r--r--lib/public/AutoloadNotAllowedException.php3
-rw-r--r--lib/public/Constants.php3
-rw-r--r--lib/public/Defaults.php37
-rw-r--r--lib/public/PreConditionNotMetException.php3
-rw-r--r--lib/versioncheck.php3
7 files changed, 51 insertions, 33 deletions
diff --git a/lib/autoloader.php b/lib/autoloader.php
index cf25f4498a8..b37e20c2379 100644
--- a/lib/autoloader.php
+++ b/lib/autoloader.php
@@ -68,7 +68,7 @@ class Autoloader {
*
* @param string $root
*/
- public function addValidRoot(string $root) {
+ public function addValidRoot(string $root): void {
$root = stream_resolve_include_path($root);
$this->validRoots[$root] = true;
}
@@ -76,14 +76,14 @@ class Autoloader {
/**
* disable the usage of the global classpath \OC::$CLASSPATH
*/
- public function disableGlobalClassPath() {
+ public function disableGlobalClassPath(): void {
$this->useGlobalClassPath = false;
}
/**
* enable the usage of the global classpath \OC::$CLASSPATH
*/
- public function enableGlobalClassPath() {
+ public function enableGlobalClassPath(): void {
$this->useGlobalClassPath = true;
}
@@ -184,7 +184,7 @@ class Autoloader {
*
* @param \OC\Memcache\Cache $memoryCache Instance of memory cache.
*/
- public function setMemoryCache(\OC\Memcache\Cache $memoryCache = null) {
+ public function setMemoryCache(\OC\Memcache\Cache $memoryCache = null): void {
$this->memoryCache = $memoryCache;
}
}
diff --git a/lib/private/Updater.php b/lib/private/Updater.php
index 78c652b6ee4..4fc6fd5799d 100644
--- a/lib/private/Updater.php
+++ b/lib/private/Updater.php
@@ -1,4 +1,7 @@
<?php
+
+declare(strict_types=1);
+
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
* @copyright Copyright (c) 2016, Lukas Reschke <lukas@statuscode.ch>
@@ -101,7 +104,7 @@ class Updater extends BasicEmitter {
*
* @return bool true if the operation succeeded, false otherwise
*/
- public function upgrade() {
+ public function upgrade(): bool {
$this->emitRepairEvents();
$this->logAllEvents();
@@ -162,7 +165,7 @@ class Updater extends BasicEmitter {
*
* @return array allowed previous versions per vendor
*/
- private function getAllowedPreviousVersions() {
+ private function getAllowedPreviousVersions(): array {
// this should really be a JSON file
require \OC::$SERVERROOT . '/version.php';
/** @var array $OC_VersionCanBeUpgradedFrom */
@@ -174,7 +177,7 @@ class Updater extends BasicEmitter {
*
* @return string Get the vendor
*/
- private function getVendor() {
+ private function getVendor(): string {
// this should really be a JSON file
require \OC::$SERVERROOT . '/version.php';
/** @var string $vendor */
@@ -188,7 +191,7 @@ class Updater extends BasicEmitter {
* @param array $allowedPreviousVersions
* @return bool
*/
- public function isUpgradePossible($oldVersion, $newVersion, array $allowedPreviousVersions) {
+ public function isUpgradePossible(string $oldVersion, string $newVersion, array $allowedPreviousVersions): bool {
$version = explode('.', $oldVersion);
$majorMinor = $version[0] . '.' . $version[1];
@@ -223,7 +226,7 @@ class Updater extends BasicEmitter {
*
* @throws \Exception
*/
- private function doUpgrade($currentVersion, $installedVersion) {
+ private function doUpgrade(string $currentVersion, string $installedVersion): void {
// Stop update if the update is over several major versions
$allowedPreviousVersions = $this->getAllowedPreviousVersions();
if (!$this->isUpgradePossible($installedVersion, $currentVersion, $allowedPreviousVersions)) {
@@ -295,7 +298,7 @@ class Updater extends BasicEmitter {
$this->config->setAppValue('core', 'vendor', $this->getVendor());
}
- protected function doCoreUpgrade() {
+ protected function doCoreUpgrade(): void {
$this->emit('\OC\Updater', 'dbUpgradeBefore');
// execute core migrations
@@ -311,7 +314,7 @@ class Updater extends BasicEmitter {
*
* @throws NeedsUpdateException
*/
- protected function doAppUpgrade() {
+ protected function doAppUpgrade(): void {
$apps = \OC_App::getEnabledApps();
$priorityTypes = ['authentication', 'filesystem', 'logging'];
$pseudoOtherType = 'other';
@@ -360,7 +363,7 @@ class Updater extends BasicEmitter {
* @return array
* @throws \Exception
*/
- private function checkAppsRequirements() {
+ private function checkAppsRequirements(): array {
$isCoreUpgrade = $this->isCodeUpgrade();
$apps = OC_App::getEnabledApps();
$version = implode('.', Util::getVersion());
@@ -395,7 +398,7 @@ class Updater extends BasicEmitter {
/**
* @return bool
*/
- private function isCodeUpgrade() {
+ private function isCodeUpgrade(): bool {
$installedVersion = $this->config->getSystemValue('version', '0.0.0');
$currentVersion = implode('.', Util::getVersion());
if (version_compare($currentVersion, $installedVersion, '>')) {
@@ -409,7 +412,7 @@ class Updater extends BasicEmitter {
* @param bool $reenable
* @throws \Exception
*/
- private function upgradeAppStoreApps(array $disabledApps, $reenable = false) {
+ private function upgradeAppStoreApps(array $disabledApps, bool $reenable = false): void {
foreach ($disabledApps as $app) {
try {
$this->emit('\OC\Updater', 'checkAppStoreAppBefore', [$app]);
@@ -432,7 +435,7 @@ class Updater extends BasicEmitter {
/**
* Forward messages emitted by the repair routine
*/
- private function emitRepairEvents() {
+ private function emitRepairEvents(): void {
$dispatcher = \OC::$server->getEventDispatcher();
$dispatcher->addListener('\OC\Repair::warning', function ($event) {
if ($event instanceof GenericEvent) {
@@ -456,7 +459,7 @@ class Updater extends BasicEmitter {
});
}
- private function logAllEvents() {
+ private function logAllEvents(): void {
$log = $this->log;
$dispatcher = \OC::$server->getEventDispatcher();
diff --git a/lib/public/AutoloadNotAllowedException.php b/lib/public/AutoloadNotAllowedException.php
index 9d41315c323..6608e1739ce 100644
--- a/lib/public/AutoloadNotAllowedException.php
+++ b/lib/public/AutoloadNotAllowedException.php
@@ -1,4 +1,7 @@
<?php
+
+declare(strict_types=1);
+
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
diff --git a/lib/public/Constants.php b/lib/public/Constants.php
index 86e1fb6c538..813fbe673d4 100644
--- a/lib/public/Constants.php
+++ b/lib/public/Constants.php
@@ -1,4 +1,7 @@
<?php
+
+declare(strict_types=1);
+
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
diff --git a/lib/public/Defaults.php b/lib/public/Defaults.php
index 8f5ed68d189..3173334664e 100644
--- a/lib/public/Defaults.php
+++ b/lib/public/Defaults.php
@@ -1,4 +1,7 @@
<?php
+
+declare(strict_types=1);
+
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
@@ -65,7 +68,7 @@ class Defaults {
* @return string
* @since 6.0.0
*/
- public function getBaseUrl() {
+ public function getBaseUrl(): string {
return $this->defaults->getBaseUrl();
}
@@ -74,7 +77,7 @@ class Defaults {
* @return string
* @since 6.0.0
*/
- public function getSyncClientUrl() {
+ public function getSyncClientUrl(): string {
return $this->defaults->getSyncClientUrl();
}
@@ -83,7 +86,7 @@ class Defaults {
* @return string
* @since 8.0.0
*/
- public function getiOSClientUrl() {
+ public function getiOSClientUrl(): string {
return $this->defaults->getiOSClientUrl();
}
@@ -92,7 +95,7 @@ class Defaults {
* @return string
* @since 8.0.0
*/
- public function getAndroidClientUrl() {
+ public function getAndroidClientUrl(): string {
return $this->defaults->getAndroidClientUrl();
}
@@ -101,7 +104,7 @@ class Defaults {
* @return string
* @since 6.0.0
*/
- public function getDocBaseUrl() {
+ public function getDocBaseUrl(): string {
return $this->defaults->getDocBaseUrl();
}
@@ -110,7 +113,7 @@ class Defaults {
* @return string
* @since 6.0.0
*/
- public function getName() {
+ public function getName(): string {
return $this->defaults->getName();
}
@@ -120,7 +123,7 @@ class Defaults {
* @since 8.0.0
* @depreacted 22.0.0
*/
- public function getHTMLName() {
+ public function getHTMLName(): string {
return $this->defaults->getHTMLName();
}
@@ -129,7 +132,7 @@ class Defaults {
* @return string
* @since 6.0.0
*/
- public function getEntity() {
+ public function getEntity(): string {
return $this->defaults->getEntity();
}
@@ -138,7 +141,7 @@ class Defaults {
* @return string
* @since 6.0.0
*/
- public function getSlogan(?string $lang = null) {
+ public function getSlogan(?string $lang = null): string {
return $this->defaults->getSlogan($lang);
}
@@ -147,7 +150,7 @@ class Defaults {
* @return string
* @since 6.0.0
*/
- public function getShortFooter() {
+ public function getShortFooter(): string {
return $this->defaults->getShortFooter();
}
@@ -156,7 +159,7 @@ class Defaults {
* @return string
* @since 6.0.0
*/
- public function getLongFooter() {
+ public function getLongFooter(): string {
return $this->defaults->getLongFooter();
}
@@ -165,7 +168,7 @@ class Defaults {
* @return string AppId
* @since 8.0.0
*/
- public function getiTunesAppId() {
+ public function getiTunesAppId(): string {
return $this->defaults->getiTunesAppId();
}
@@ -176,7 +179,7 @@ class Defaults {
* @return string
* @since 12.0.0
*/
- public function getLogo($useSvg = true) {
+ public function getLogo(bool $useSvg = true): string {
return $this->defaults->getLogo($useSvg);
}
@@ -185,7 +188,7 @@ class Defaults {
* @return string
* @since 12.0.0
*/
- public function getColorPrimary() {
+ public function getColorPrimary(): string {
return $this->defaults->getColorPrimary();
}
@@ -194,7 +197,7 @@ class Defaults {
* @return string URL to doc with key
* @since 12.0.0
*/
- public function buildDocLinkToKey($key) {
+ public function buildDocLinkToKey(string $key): string {
return $this->defaults->buildDocLinkToKey($key);
}
@@ -203,7 +206,7 @@ class Defaults {
* @return string title
* @since 12.0.0
*/
- public function getTitle() {
+ public function getTitle(): string {
return $this->defaults->getTitle();
}
@@ -212,7 +215,7 @@ class Defaults {
* @return string
* @since 13.0.0
*/
- public function getTextColorPrimary() {
+ public function getTextColorPrimary(): string {
return $this->defaults->getTextColorPrimary();
}
}
diff --git a/lib/public/PreConditionNotMetException.php b/lib/public/PreConditionNotMetException.php
index 1871a16088f..f48ac01ade4 100644
--- a/lib/public/PreConditionNotMetException.php
+++ b/lib/public/PreConditionNotMetException.php
@@ -1,4 +1,7 @@
<?php
+
+declare(strict_types=1);
+
/**
* @copyright Copyright (c) 2016, ownCloud, Inc.
*
diff --git a/lib/versioncheck.php b/lib/versioncheck.php
index efd4e0f3774..83ee705a77b 100644
--- a/lib/versioncheck.php
+++ b/lib/versioncheck.php
@@ -1,4 +1,7 @@
<?php
+
+declare(strict_types=1);
+
/**
*
*