From: Tim Düsterhus Date: Fri, 24 Jun 2022 12:19:39 +0000 (+0200) Subject: Fix typo in parameter type name in ControllerMap X-Git-Tag: 6.0.0_Alpha_1~1148 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=20a299b25d15c7178905a3ceb91f4ccb45200b6c;p=GitHub%2FWoltLab%2FWCF.git Fix typo in parameter type name in ControllerMap see a3ae99cdfc70906b0ffffa51df4e3a060141dff2 --- diff --git a/wcfsetup/install/files/lib/system/request/ControllerMap.class.php b/wcfsetup/install/files/lib/system/request/ControllerMap.class.php index bb7c00a4b5..0c024fca8b 100644 --- a/wcfsetup/install/files/lib/system/request/ControllerMap.class.php +++ b/wcfsetup/install/files/lib/system/request/ControllerMap.class.php @@ -126,7 +126,7 @@ final class ControllerMap extends SingletonFactory * * @return array empty array if there is no exact match */ - public function resolveCustomController(string $application, strign $controller): array + public function resolveCustomController(string $application, string $controller): array { if ($controller === '') { throw new \InvalidArgumentException('The given controller must not be empty.');