Change `protected` to `private` in RouteHandler
authorTim Düsterhus <duesterhus@woltlab.com>
Fri, 14 Apr 2023 13:17:36 +0000 (15:17 +0200)
committerTim Düsterhus <duesterhus@woltlab.com>
Fri, 14 Apr 2023 13:17:36 +0000 (15:17 +0200)
The RouteHandler is final anyway.

wcfsetup/install/files/lib/system/request/RouteHandler.class.php

index c944926b9d86f43350b8c6ab16859b1223e0719e..1ee730696d3686627b1845a51371a56d8548532e 100644 (file)
@@ -26,55 +26,55 @@ final class RouteHandler extends SingletonFactory
      * current host and protocol
      * @var string
      */
-    protected static $host = '';
+    private static $host = '';
 
     /**
      * current absolute path
      * @var string
      */
-    protected static $path = '';
+    private static $path = '';
 
     /**
      * current path info component
      * @var string
      */
-    protected static $pathInfo;
+    private static $pathInfo;
 
     /**
      * HTTP protocol, either 'http://' or 'https://'
      * @var string
      */
-    protected static $protocol = '';
+    private static $protocol = '';
 
     /**
      * HTTP encryption
      * @var bool
      */
-    protected static $secure;
+    private static $secure;
 
     /**
      * true if the default controller is used (support for custom landing page)
      * @var bool
      */
-    protected $isDefaultController = false;
+    private $isDefaultController = false;
 
     /**
      * true if the controller was renamed and has already been transformed
      * @var bool
      */
-    protected $isRenamedController = false;
+    private $isRenamedController = false;
 
     /**
      * list of available routes
      * @var IRequestRoute[]
      */
-    protected $routes = [];
+    private $routes = [];
 
     /**
      * parsed route data
      * @var array
      */
-    protected $routeData;
+    private $routeData;
 
     /**
      * Sets default routes.
@@ -193,7 +193,7 @@ final class RouteHandler extends SingletonFactory
     /**
      * Registers route data within $_GET and $_REQUEST.
      */
-    protected function registerRouteData()
+    private function registerRouteData()
     {
         foreach ($this->routeData as $key => $value) {
             $_GET[$key] = $value;