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

lib/private/db/mdb2schemamanager.php
lib/private/diagnostics/querylogger.php
lib/private/files.php
lib/private/files/node/root.php
lib/private/files/storage/common.php
lib/private/files/stream/dir.php
lib/private/files/type/detection.php

index 495ccb902d6c20c05904368182026a0e3d67dc3e..bcabb6fe57aee58644766dafb8427a86b9ce5a37 100644 (file)
@@ -49,7 +49,6 @@ class MDB2SchemaManager {
        /**
         * saves database scheme to xml file
         * @param string $file name of file
-        * @param int|string $mode
         * @return bool
         *
         * TODO: write more documentation
@@ -123,7 +122,7 @@ class MDB2SchemaManager {
        /**
         * update the database scheme
         * @param string $file file to read structure from
-        * @return string|boolean
+        * @return boolean
         */
        public function simulateUpdateDbFromStructure($file) {
                $toSchema = $this->readSchemaFromFile($file);
index 794e7a5e263605b7d3b7a2cfa90350eac003aba1..66a65b71d0401f4b7d9c5a45144871c9e582936c 100644 (file)
@@ -53,7 +53,7 @@ class QueryLogger implements IQueryLogger {
        }
 
        /**
-        * @return \OCP\Diagnostics\IQuery[]
+        * @return Query[]
         */
        public function getQueries() {
                return $this->queries;
index 7b451ac19bef0d7d476891d500a8cb2a496f52b9..a18bcc76519c6eee9b9e90f1c2196a3f00023464 100644 (file)
@@ -160,6 +160,8 @@ class OC_Files {
        /**
         * @param View $view
         * @param string $name
+        * @param string $dir
+        * @param boolean $onlyHeader
         */
        private static function getSingleFile($view, $dir, $name, $onlyHeader) {
                $filename = $dir . '/' . $name;
@@ -185,7 +187,7 @@ class OC_Files {
 
        /**
         * @param View $view
-        * @param $dir
+        * @param string $dir
         * @param string[]|string $files
         */
        public static function lockFiles($view, $dir, $files) {
@@ -290,11 +292,11 @@ class OC_Files {
        }
 
        /**
-        * @param $dir
+        * @param string $dir
         * @param $files
-        * @param $getType
+        * @param integer $getType
         * @param View $view
-        * @param $filename
+        * @param string $filename
         */
        private static function unlockAllTheFiles($dir, $files, $getType, $view, $filename) {
                if ($getType === self::FILE) {
index 35163be0a0dc5c4c291009966d053894119c8622..40ed531d5dfafc686db746271ba6c5db3923c450 100644 (file)
@@ -169,7 +169,7 @@ class Root extends Folder implements IRootFolder {
         * @param string $path
         * @throws \OCP\Files\NotFoundException
         * @throws \OCP\Files\NotPermittedException
-        * @return \OCP\Files\Node
+        * @return string
         */
        public function get($path) {
                $path = $this->normalizePath($path);
index 95bb3f74ba723d2fae5c10a08ee62e59deb1b332..7d8d9ebd25ebbe4280ec3d78a5ec076148caf82e 100644 (file)
@@ -396,7 +396,7 @@ abstract class Common implements Storage, ILockingStorage {
         * get the ETag for a file or folder
         *
         * @param string $path
-        * @return string|false
+        * @return string
         */
        public function getETag($path) {
                return uniqid();
index fabadb0d59607405c08081bef17f6be345178877..7489ee683a29cbd8dafe2237a850c6fe7b09993b 100644 (file)
@@ -58,6 +58,7 @@ class Dir {
 
        /**
         * @param string $path
+        * @param string[] $content
         */
        public static function register($path, $content) {
                self::$dirs[$path] = $content;
index 9cc2e97c3ccf97e970c17c5bad4b3efb24491fb3..f106a98064fb69eec95c5498dd174199d85908e8 100644 (file)
@@ -121,7 +121,7 @@ class Detection implements IMimeTypeDetector {
        }
 
        /**
-        * @return array
+        * @return string[]
         */
        public function getAllAliases() {
                $this->loadAliases();
@@ -264,7 +264,7 @@ class Detection implements IMimeTypeDetector {
 
        /**
         * Get path to the icon of a file type
-        * @param string $mimeType the MIME type
+        * @param string $mimetype the MIME type
         * @return string the url
         */
        public function mimeTypeIcon($mimetype) {