summaryrefslogtreecommitdiff
path: root/core/classes/Route.php
diff options
context:
space:
mode:
authorGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-05-25 09:30:37 +0300
committerGeorge Halkiadakis <gchalkiadakis@sklavenitis.co.gr>2023-05-25 09:30:37 +0300
commita3dc1f0f55003ca2fb325ed2e3f974094f6cad2e (patch)
tree09aa5f8208460c5c2883209d7139d59ba2d623e3 /core/classes/Route.php
parent2b1f4aed56c5bfbf014f3f871e9dcc336b5a31b7 (diff)
downloadgyraf1gov-a3dc1f0f55003ca2fb325ed2e3f974094f6cad2e.tar.gz
gyraf1gov-a3dc1f0f55003ca2fb325ed2e3f974094f6cad2e.tar.bz2
gyraf1gov-a3dc1f0f55003ca2fb325ed2e3f974094f6cad2e.zip
break form scripts in parts; first pdf example
Diffstat (limited to 'core/classes/Route.php')
-rw-r--r--core/classes/Route.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/classes/Route.php b/core/classes/Route.php
index 072723c..ab0a0a7 100644
--- a/core/classes/Route.php
+++ b/core/classes/Route.php
@@ -20,9 +20,9 @@ class Route {
/** add (route)
* ---
- * @param $expression : (string) static or regex matcher
- * @param $function : callback function to be executed if expression is matched
- * @param $method : get / post / any
+ * @param string $expression : static or regex matcher
+ * @param callback $function : function to be executed if expression is matched
+ * @param string $method : get / post / any
*/
public static function add( $expression, $function, $method = 'get' )
{
@@ -36,7 +36,7 @@ class Route {
/** notFound($function)
* ---
- * @param $function : call back function to be executed
+ * @param callback $function : callback function to be executed
*/
public static function notFound($function)
{