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

apps/user_ldap/lib/configuration.php
apps/user_ldap/user_ldap.php
build/license.php
lib/private/app/dependencyanalyzer.php
lib/private/app/platformrepository.php
lib/private/db/migrator.php
lib/private/defaults.php

index e810fb835d48f662bd1eedca50c8e0d5a4d5177e..75d244255c6420e59d8177b206b485681a203a81 100644 (file)
@@ -281,7 +281,6 @@ class Configuration {
         * 
         * @param string $varName name of config-key
         * @param array|string $value to set
-        * @param boolean $trim Trim value? (default: false)
         */
        protected function setMultiLine($varName, $value) {
                if(empty($value)) {
index 8ebb5ab30e8ed7e9c2de63e77badf938fa5b2d35..87c857a844a961132d7232fad69ca63a893bc177 100644 (file)
@@ -152,8 +152,8 @@ class USER_LDAP extends BackendUtility implements \OCP\IUserBackend, \OCP\UserIn
         * Get a list of all users
         *
         * @param string $search
-        * @param null|int $limit
-        * @param null|int $offset
+        * @param integer $limit
+        * @param integer $offset
         * @return string[] an array of all uids
         */
        public function getUsers($search = '', $limit = 10, $offset = 0) {
index 738ace8b1ad8b4b66f3db553051399150045b528..ce6fceb8160a2d905abc38b1ceaf110651321d4c 100644 (file)
@@ -118,6 +118,9 @@ With help from many libraries and frameworks including:
                echo "License updated: $path" . PHP_EOL;
        }
 
+       /**
+        * @param string $source
+        */
        private function isMITLicensed($source) {
                $lines = explode(PHP_EOL, $source);
                while(!empty($lines)) {
@@ -131,6 +134,9 @@ With help from many libraries and frameworks including:
                return false;
        }
 
+       /**
+        * @param string $source
+        */
        private function eatOldLicense($source) {
                $lines = explode(PHP_EOL, $source);
                while(!empty($lines)) {
index ba2479ae7aa13252d9d6e8351f696d9991f266ea..0cf4bc7216108a9d55a4a02e4bf8c42a5232f936 100644 (file)
@@ -73,7 +73,7 @@ class DependencyAnalyzer {
         * 5.2.6.5 and 5.1 will be turned into 5.2 and 5.1
         * @param string $first
         * @param string $second
-        * @return array first element is the first version, second element is the
+        * @return string[] first element is the first version, second element is the
         * second version
         */
        private function normalizeVersions($first, $second) {
index 730c67f45eeb4fb30e5b21fa6ec46deb38cb6f09..7363b2a44b1f3703a3c683c06f826956c99ca8ef 100644 (file)
@@ -206,6 +206,9 @@ class PlatformRepository {
                throw new \UnexpectedValueException('Invalid version string "' . $version . '"' . $extraMessage);
        }
 
+       /**
+        * @param string $stability
+        */
        private function expandStability($stability) {
                $stability = strtolower($stability);
                switch ($stability) {
index cd310bb75a52cb7fe80329bb3eafa669f67d3ddb..7ca3f981358b3ce6d098abd7b75af0e4dbf339f5 100644 (file)
@@ -52,7 +52,7 @@ class Migrator {
        protected $config;
 
        /**
-        * @param \Doctrine\DBAL\Connection $connection
+        * @param Connection $connection
         * @param ISecureRandom $random
         * @param IConfig $config
         */
index 1fa8352edc15f30571c1b089a1341aaf0c2acee7..43e8c8082cc415b189bb7cef71d08d3cefef87e6 100644 (file)
@@ -261,6 +261,9 @@ class OC_Defaults {
                return $footer;
        }
 
+       /**
+        * @param string $key
+        */
        public function buildDocLinkToKey($key) {
                if ($this->themeExist('buildDocLinkToKey')) {
                        return $this->theme->buildDocLinkToKey($key);