]> source.dussan.org Git - nextcloud-server.git/commitdiff
Scrutinizer Auto-Fixes
authorScrutinizer Auto-Fixer <auto-fixer@scrutinizer-ci.com>
Wed, 17 Feb 2016 13:21:07 +0000 (13:21 +0000)
committerRoeland Jago Douma <rullzer@owncloud.com>
Fri, 19 Feb 2016 08:43:11 +0000 (09:43 +0100)
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com

lib/private/api.php
lib/private/files/stream/encryption.php
lib/private/group/dummy.php
lib/private/group/manager.php
lib/private/memcache/factory.php
lib/private/preview.php
lib/public/appframework/utility/icontrollermethodreflector.php
lib/public/search/pagedprovider.php

index 6c6be233c9dfbcb9310543aae2ef34219a12c4a3..734bb30d33445e5ae9544c6147bc7ac537ad9626 100644 (file)
@@ -188,7 +188,7 @@ class OC_API {
        /**
         * merge the returned result objects into one response
         * @param array $responses
-        * @return array|\OC_OCS_Result
+        * @return OC_OCS_Result
         */
        public static function mergeResponses($responses) {
                // Sort into shipped and third-party
@@ -329,7 +329,7 @@ class OC_API {
 
        /**
         * http basic auth
-        * @return string|false (username, or false on failure)
+        * @return string (username, or false on failure)
         */
        private static function loginUser() {
                if(self::$isLoggedIn === true) {
@@ -442,6 +442,7 @@ class OC_API {
 
        /**
         * Based on the requested format the response content type is set
+        * @param string $format
         */
        public static function setContentType($format = null) {
                $format = is_null($format) ? self::requestedFormat() : $format;
index 63949035b5a4787d186eac652748e0396ed3f655..37a1d75519df511405764a425f35b6519ed9920f 100644 (file)
@@ -183,7 +183,7 @@ class Encryption extends Wrapper {
         *
         * @param resource $source
         * @param string $mode
-        * @param array $context
+        * @param resource $context
         * @param string $protocol
         * @param string $class
         * @return resource
index c0d206a34e1278026c4320e70ca98ab81b17b3f5..3e4dfeba5e3e90258f647fb2a655240f9e95c520 100644 (file)
@@ -106,7 +106,7 @@ class OC_Group_Dummy extends OC_Group_Backend {
         * Removes a user from a group
         * @param string $uid Name of the user to remove from group
         * @param string $gid Name of the group from which remove the user
-        * @return bool
+        * @return null|false
         *
         * removes the user from a group.
         */
index 98e5551bcc541a75b795616e4e9523c622e50b4d..1f4092ed60643fd208b5889aed5d7e94b0d8fe77 100644 (file)
@@ -150,6 +150,9 @@ class Manager extends PublicEmitter implements IGroupManager {
                return $this->getGroupObject($gid);
        }
 
+       /**
+        * @param string $gid
+        */
        protected function getGroupObject($gid) {
                $backends = array();
                foreach ($this->backends as $backend) {
index 21149d8b6bf073124eef3901192577be62f1ea9b..204ded7d5ab0b0b2d2730abecb79bc736cd25f64 100644 (file)
@@ -172,7 +172,7 @@ class Factory implements ICacheFactory {
        /**
         * @see \OC\Memcache\Factory::createLocal()
         * @param string $prefix
-        * @return \OC\Memcache\Cache|null
+        * @return Cache
         */
        public function createLowLatency($prefix = '') {
                return $this->createLocal($prefix);
index df6eeceddcb0ec9288c3b64edb053a673c723e14..4039109a5707c164a617b1aad821084938dc9217 100644 (file)
@@ -202,7 +202,7 @@ class Preview {
        /**
         * returns the max width set in ownCloud's config
         *
-        * @return string
+        * @return integer
         */
        public function getConfigMaxX() {
                return $this->configMaxWidth;
@@ -211,7 +211,7 @@ class Preview {
        /**
         * returns the max height set in ownCloud's config
         *
-        * @return string
+        * @return integer
         */
        public function getConfigMaxY() {
                return $this->configMaxHeight;
@@ -546,7 +546,7 @@ class Preview {
        /**
         * Determines the size of the preview we should be looking for in the cache
         *
-        * @return int[]
+        * @return integer[]
         */
        private function simulatePreviewDimensions() {
                $askedWidth = $this->getMaxX();
@@ -570,7 +570,7 @@ class Preview {
         *
         * @param int $originalWidth
         * @param int $originalHeight
-        * @return \int[]
+        * @return integer[]
         */
        private function applyAspectRatio($askedWidth, $askedHeight, $originalWidth = 0, $originalHeight = 0) {
                if(!$originalWidth){
@@ -602,7 +602,7 @@ class Preview {
         * @param int $askedHeight
         * @param int $previewWidth
         * @param int $previewHeight
-        * @return \int[]
+        * @return integer[]
         */
        private function applyCover($askedWidth, $askedHeight, $previewWidth, $previewHeight) {
                $originalRatio = $previewWidth / $previewHeight;
@@ -628,7 +628,7 @@ class Preview {
         * @param int $askedWidth
         * @param int $askedHeight
         *
-        * @return \int[]
+        * @return integer[]
         */
        private function fixSize($askedWidth, $askedHeight) {
                if ($this->scalingUp) {
@@ -921,9 +921,9 @@ class Preview {
         * @param int $askedWidth
         * @param int $askedHeight
         * @param int $previewWidth
-        * @param null $previewHeight
+        * @param integer $previewHeight
         *
-        * @return int[]
+        * @return double[]
         */
        private function scale($image, $askedWidth, $askedHeight, $previewWidth, $previewHeight) {
                $scalingUp = $this->getScalingUp();
@@ -971,7 +971,7 @@ class Preview {
         * @param int $askedWidth
         * @param int $askedHeight
         * @param int $previewWidth
-        * @param null $previewHeight
+        * @param double $previewHeight
         */
        private function crop($image, $askedWidth, $askedHeight, $previewWidth, $previewHeight = null) {
                $cropX = floor(abs($askedWidth - $previewWidth) * 0.5);
@@ -990,7 +990,7 @@ class Preview {
         * @param int $askedWidth
         * @param int $askedHeight
         * @param int $previewWidth
-        * @param null $previewHeight
+        * @param double $previewHeight
         */
        private function cropAndFill($image, $askedWidth, $askedHeight, $previewWidth, $previewHeight) {
                if ($previewWidth > $askedWidth) {
@@ -1218,7 +1218,7 @@ class Preview {
         * @param int $maxDim
         * @param string $dimName
         *
-        * @return mixed
+        * @return integer
         */
        private function limitMaxDim($dim, $maxDim, $dimName) {
                if (!is_null($maxDim)) {
index b2f91fdb17027528b0caf291cf044ef091af97e9..b2261e68859c4dba06c1a5e390e534086b79da9b 100644 (file)
@@ -36,6 +36,7 @@ interface IControllerMethodReflector {
         * @param object $object an object or classname
         * @param string $method the method which we want to inspect
         * @since 8.0.0
+        * @return void
         */
        public function reflect($object, $method);
 
index 93289a1bde44c0f15abbb72f55cf0cd0a4b1cc3f..2695d2d6125365361071ecb656979ff9951c8702 100644 (file)
@@ -59,6 +59,7 @@ abstract class PagedProvider extends Provider {
         * @param string $query
         * @param int $page pages start at page 1
         * @param int $size, 0 = SIZE_ALL
+        * @param integer $size
         * @return array An array of OCP\Search\Result's
         * @since 8.0.0
         */