]> source.dussan.org Git - nextcloud-server.git/commitdiff
Deprecate the query mothod on the server container 21887/head
authorChristoph Wurst <christoph@winzerhof-wurst.at>
Fri, 17 Jul 2020 06:05:07 +0000 (08:05 +0200)
committerChristoph Wurst <christoph@winzerhof-wurst.at>
Fri, 17 Jul 2020 06:05:07 +0000 (08:05 +0200)
The interface method has already been deprecated, but if some code uses
the concrete type instead, the deprecation is not shown (by phpstorm),
so I think it's better to have this method tagged as well.

The "fix" for this deprecation is to simply use `get` instead of
`query`. Right now this will work 100% the same, but the goal is to slim
down the interface and only use what PSR-11 offers.

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
lib/private/ServerContainer.php

index eb6bda1e27b5408e173effdb66b0cfabb7a86464..b1bf38265b864d3c96a78d6ddc8aa4a796b1073f 100644 (file)
@@ -127,6 +127,9 @@ class ServerContainer extends SimpleContainer {
                return parent::has($id);
        }
 
+       /**
+        * @deprecated 20.0.0 use \Psr\Container\ContainerInterface::get
+        */
        public function query(string $name, bool $autoload = true) {
                $name = $this->sanitizeName($name);