]> source.dussan.org Git - nextcloud-server.git/commitdiff
Add return types 15129/head
authorJoas Schilling <coding@schilljs.com>
Tue, 16 Apr 2019 09:44:35 +0000 (11:44 +0200)
committerRoeland Jago Douma <roeland@famdouma.nl>
Tue, 16 Apr 2019 13:42:21 +0000 (15:42 +0200)
Signed-off-by: Joas Schilling <coding@schilljs.com>
lib/private/Repair/RemoveLinkShares.php

index 49850298d4057c68102a50d80cc20390e642aaa8..55b5a7c1fae0bfa05ede0f47b6c9f28273f04677 100644 (file)
@@ -86,7 +86,7 @@ class RemoveLinkShares implements IRepairStep {
         *
         * @param int $id
         */
-       private function deleteShare(int $id) {
+       private function deleteShare(int $id): void {
                $qb = $this->connection->getQueryBuilder();
                $qb->delete('share')
                        ->where($qb->expr()->eq('id', $qb->createNamedParameter($id)));
@@ -162,7 +162,7 @@ class RemoveLinkShares implements IRepairStep {
         *
         * @param array $data
         */
-       private function processShare(array $data) {
+       private function processShare(array $data): void {
                $id = $data['id'];
 
                $this->addToNotify($data['uid_owner']);
@@ -176,7 +176,7 @@ class RemoveLinkShares implements IRepairStep {
         *
         * @param string $uid
         */
-       private function addToNotify(string $uid) {
+       private function addToNotify(string $uid): void {
                if (!isset($this->userToNotify[$uid])) {
                        $this->userToNotify[$uid] = true;
                }
@@ -185,14 +185,14 @@ class RemoveLinkShares implements IRepairStep {
        /**
         * Send all notifications
         */
-       private function sendNotification() {
+       private function sendNotification(): void {
                $time = $this->timeFactory->getDateTime();
 
                $notification = $this->notificationManager->createNotification();
                $notification->setApp('core')
                        ->setDateTime($time)
                        ->setObject('repair', 'exposing_links')
-                       ->setSubject('repair_exposing_links', []);
+                       ->setSubject('repair_exposing_links');
 
                $users = array_keys($this->userToNotify);
                foreach ($users as $user) {
@@ -201,7 +201,7 @@ class RemoveLinkShares implements IRepairStep {
                }
        }
 
-       private function repair(IOutput $output) {
+       private function repair(IOutput $output): void {
                $total = $this->getTotal();
                $output->startProgress($total);
 
@@ -224,7 +224,7 @@ class RemoveLinkShares implements IRepairStep {
                $this->sendNotification();
        }
 
-       public function run(IOutput $output) {
+       public function run(IOutput $output): void {
                if ($this->shouldRun()) {
                        $output->info('Removing potentially over exposing link shares');
                        $this->repair($output);