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:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 17:51:06 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2020-04-10 17:51:06 +0300
commit1584c9ae9c23d2a7915750ef9203cba0bcebf766 (patch)
tree568db931f631afd6e96772cf2b3ac539c989ec42 /apps/files_versions
parenta7c8d26d31cb1cf69e0e060c53622e545fcfbbb3 (diff)
Add visibility to all methods and position of static keyword
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'apps/files_versions')
-rw-r--r--apps/files_versions/lib/Command/CleanUp.php2
-rw-r--r--apps/files_versions/lib/Command/Expire.php2
-rw-r--r--apps/files_versions/lib/Command/ExpireVersions.php2
-rw-r--r--apps/files_versions/lib/Sabre/Plugin.php4
4 files changed, 5 insertions, 5 deletions
diff --git a/apps/files_versions/lib/Command/CleanUp.php b/apps/files_versions/lib/Command/CleanUp.php
index 397a1450578..fb8538adefc 100644
--- a/apps/files_versions/lib/Command/CleanUp.php
+++ b/apps/files_versions/lib/Command/CleanUp.php
@@ -42,7 +42,7 @@ class CleanUp extends Command {
* @param IRootFolder $rootFolder
* @param IUserManager $userManager
*/
- function __construct(IRootFolder $rootFolder, IUserManager $userManager) {
+ public function __construct(IRootFolder $rootFolder, IUserManager $userManager) {
parent::__construct();
$this->userManager = $userManager;
$this->rootFolder = $rootFolder;
diff --git a/apps/files_versions/lib/Command/Expire.php b/apps/files_versions/lib/Command/Expire.php
index 55f88aba688..a98eba2ece9 100644
--- a/apps/files_versions/lib/Command/Expire.php
+++ b/apps/files_versions/lib/Command/Expire.php
@@ -46,7 +46,7 @@ class Expire implements ICommand {
* @param string $user
* @param string $fileName
*/
- function __construct($user, $fileName) {
+ public function __construct($user, $fileName) {
$this->user = $user;
$this->fileName = $fileName;
}
diff --git a/apps/files_versions/lib/Command/ExpireVersions.php b/apps/files_versions/lib/Command/ExpireVersions.php
index 944e0136691..4d9dbc25238 100644
--- a/apps/files_versions/lib/Command/ExpireVersions.php
+++ b/apps/files_versions/lib/Command/ExpireVersions.php
@@ -99,7 +99,7 @@ class ExpireVersions extends Command {
}
}
- function expireVersionsForUser(IUser $user) {
+ public function expireVersionsForUser(IUser $user) {
$uid = $user->getUID();
if (!$this->setupFS($uid)) {
return;
diff --git a/apps/files_versions/lib/Sabre/Plugin.php b/apps/files_versions/lib/Sabre/Plugin.php
index 41c3ff5a5a8..0c8858d3bb8 100644
--- a/apps/files_versions/lib/Sabre/Plugin.php
+++ b/apps/files_versions/lib/Sabre/Plugin.php
@@ -41,11 +41,11 @@ class Plugin extends ServerPlugin {
/** @var IRequest */
private $request;
- function __construct(IRequest $request) {
+ public function __construct(IRequest $request) {
$this->request = $request;
}
- function initialize(Server $server) {
+ public function initialize(Server $server) {
$this->server = $server;
$server->on('afterMethod:GET', [$this, 'afterGet']);