diff options
author | Josh <josh.t.richards@gmail.com> | 2024-09-24 17:31:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 17:31:05 -0400 |
commit | b209b69f53f0e1188cb555966029a955ba56670c (patch) | |
tree | 6ca9828e3d8d4fac8c9098593ee73c991b9aa648 | |
parent | 3fec5814c75b709f2d36cdd4a47e8ab6c9e8ec4e (diff) | |
download | nextcloud-server-jtr/router-light-refactoring.tar.gz nextcloud-server-jtr/router-light-refactoring.zip |
fix: type hint array not string[]jtr/router-light-refactoring
Signed-off-by: Josh <josh.t.richards@gmail.com>
-rw-r--r-- | lib/private/Route/Router.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/Route/Router.php b/lib/private/Route/Router.php index e42d6750fdf..42a885f6dbb 100644 --- a/lib/private/Route/Router.php +++ b/lib/private/Route/Router.php @@ -79,7 +79,7 @@ class Router implements IRouter { * * @return string[] */ - public function getRoutingFiles(): string[] { + public function getRoutingFiles(): array { if ($this->routingFiles === null) { $this->routingFiles = []; foreach (\OC_APP::getEnabledApps() as $app) { |