]> source.dussan.org Git - nextcloud-server.git/commitdiff
Use mixed as type
authorLukas Reschke <lukas@owncloud.com>
Wed, 22 Oct 2014 13:07:16 +0000 (15:07 +0200)
committerLukas Reschke <lukas@owncloud.com>
Wed, 22 Oct 2014 13:09:33 +0000 (15:09 +0200)
Actually query() returns value of the type "mixed" (as is also stated in the interface) - this is purely there to make our IDEs and Scrutinizer happier.

lib/private/appframework/utility/simplecontainer.php

index 1ad06b9ab23cb4d68fd4f6af2bd5360ca17eef44..a2d90138dfa0a22bedd9601eb2ff858ca0b526ea 100644 (file)
@@ -11,14 +11,17 @@ class SimpleContainer extends \Pimple implements \OCP\IContainer {
 
        /**
         * @param string $name name of the service to query for
-        * @return object registered service for the given $name
+        * @return mixed registered service for the given $name
         */
        public function query($name) {
                return $this->offsetGet($name);
        }
 
-       function registerParameter($name, $value)
-       {
+       /**
+        * @param string $name
+        * @param mixed $value
+        */
+       function registerParameter($name, $value) {
                $this[$name] = $value;
        }
 
@@ -29,9 +32,9 @@ class SimpleContainer extends \Pimple implements \OCP\IContainer {
         *
         * @param string $name name of the service to register another backend for
         * @param \Closure $closure the closure to be called on service creation
+        * @param bool $shared
         */
-       function registerService($name, \Closure $closure, $shared = true)
-       {
+       function registerService($name, \Closure $closure, $shared = true) {
                if ($shared) {
                        $this[$name] = \Pimple::share($closure);
                } else {