]> source.dussan.org Git - nextcloud-server.git/commitdiff
Scrutinizer Auto-Fixes
authorScrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com>
Mon, 8 Feb 2016 15:43:39 +0000 (15:43 +0000)
committerScrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com>
Mon, 8 Feb 2016 15:43:39 +0000 (15:43 +0000)
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com

lib/private/setup/abstractdatabase.php
lib/private/setup/mysql.php
lib/private/share/helper.php
lib/private/share/share.php
lib/private/template.php
lib/private/updater.php
lib/private/user.php

index c97302ab252397486e61eb941269fdfcc7c2d723..0c1e5904e088a875f2f33631ee3f3dec76e9c7b4 100644 (file)
@@ -91,5 +91,8 @@ abstract class AbstractDatabase {
                $this->tablePrefix = $dbTablePrefix;
        }
 
+       /**
+        * @param string $userName
+        */
        abstract public function setupDatabase($userName);
 }
index e6afad6033a5af642419ee3690ddc43cf5739ed2..de2466676c1dd0a33c512eacef6a81291eee47a7 100644 (file)
@@ -71,7 +71,7 @@ class MySQL extends AbstractDatabase {
        }
 
        /**
-        * @param IDbConnection $connection
+        * @param IDBConnection $connection
         * @throws \OC\DatabaseSetupException
         */
        private function createDBUser($connection) {
index 1645e4451abd54ad59ca54bf8558e48b973473d9..f9581e48e624833919efc2d3ceadec10f99ea26b 100644 (file)
@@ -227,7 +227,7 @@ class Helper extends \OC\Share\Constants {
         *
         * all return: http://localhost
         *
-        * @param string $shareWith
+        * @param string $remote
         * @return string
         */
        protected static function fixRemoteURL($remote) {
@@ -244,7 +244,7 @@ class Helper extends \OC\Share\Constants {
         * split user and remote from federated cloud id
         *
         * @param string $id
-        * @return array
+        * @return string[]
         * @throws HintException
         */
        public static function splitUserRemote($id) {
index 96b920fe9943e4f583d2ed5c90e6c7877427fdcf..51d98fff792852f1f416984ed690f211486947b7 100644 (file)
@@ -2297,6 +2297,16 @@ class Share extends Constants {
                return $id ? $id : false;
        }
 
+       /**
+        * @param string $itemType
+        * @param string $itemSource
+        * @param integer $shareType
+        * @param string $shareWith
+        * @param string $uidOwner
+        * @param integer $permissions
+        * @param string|null $itemSourceName
+        * @param null|\DateTime $expirationDate
+        */
        private static function checkReshare($itemType, $itemSource, $shareType, $shareWith, $uidOwner, $permissions, $itemSourceName, $expirationDate) {
                $backend = self::getBackend($itemType);
 
index ae3e857a7980f3d3a3b4966a5bbdac188e78ef10..d068150b33b9879f9411f041a51e794ec371d123 100644 (file)
@@ -70,6 +70,10 @@ class OC_Template extends \OC\Template\Base {
        
        protected static $initTemplateEngineFirstRun = true;
        
+       /**
+        * @param string $app
+        * @param string $name
+        */
        public function __construct( $app, $name, $renderAs = "", $registerCall = true ) {
                // Read the selected theme from the config file
                self::initTemplateEngine($renderAs);
@@ -92,6 +96,9 @@ class OC_Template extends \OC\Template\Base {
                parent::__construct($template, $requestToken, $l10n, $themeDefaults);
        }
 
+       /**
+        * @param string $renderAs
+        */
        public static function initTemplateEngine($renderAs) {
                if (self::$initTemplateEngineFirstRun){
                        
@@ -182,7 +189,7 @@ class OC_Template extends \OC\Template\Base {
         * Checking all the possible locations.
         * @param string $theme
         * @param string $app
-        * @return array
+        * @return string[]
         */
        protected function findTemplate($theme, $app, $name) {
                // Check if it is a app template or not.
index 32264484ee30d5508514d41a4556b4d0e5da8f15..1c5e8a3a26ef9f227004a59ba9ef20e1891c922d 100644 (file)
@@ -35,7 +35,6 @@ namespace OC;
 
 use OC\Hooks\BasicEmitter;
 use OC\IntegrityCheck\Checker;
-use OC\IntegrityCheck\Storage;
 use OC_App;
 use OC_Installer;
 use OC_Util;
@@ -287,7 +286,7 @@ class Updater extends BasicEmitter {
         * @param string $installedVersion previous version from which to upgrade from
         *
         * @throws \Exception
-        * @return bool true if the operation succeeded, false otherwise
+        * @return boolean|null true if the operation succeeded, false otherwise
         */
        private function doUpgrade($currentVersion, $installedVersion) {
                // Stop update if the update is over several major versions
index ae98bb9b01ac12133c2ed5508b7bb7e494ec532e..21971fc3d1d0d28b6062d68ee95b3d68ec213d13 100644 (file)
@@ -253,7 +253,7 @@ class OC_User {
         * Sets user display name for session
         *
         * @param string $uid
-        * @param null $displayName
+        * @param string $displayName
         * @return bool Whether the display name could get set
         */
        public static function setDisplayName($uid, $displayName = null) {