From d60557e9d63bb6f90df6a4061574ac89f3103445 Mon Sep 17 00:00:00 2001 From: User Date: Fri, 12 Apr 2024 02:43:39 +0300 Subject: [PATCH] 20240412#1 --- src/Router.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Router.php b/src/Router.php index d01cd73..e1374e1 100644 --- a/src/Router.php +++ b/src/Router.php @@ -12,10 +12,10 @@ class Router implements RouterInterface { private string $startPoint = "/"; /** - * @param string $startPoint + * @param string $mountPoint */ - public function setStartPoint(string $startPoint): void { - $this->startPoint = $startPoint; + public function setStartPoint(string $mountPoint): void { + $this->startPoint = $mountPoint; } /**