We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8ba7f2 commit c5b08b5Copy full SHA for c5b08b5
Engine/App.php
@@ -1,6 +1,7 @@
1
<?php
2
3
namespace Engine;
4
+use \ReflectionClass;
5
6
/**
7
* Class App
@@ -35,9 +36,9 @@ public static function start(): void {
35
36
37
$class = new ReflectionClass(self::$controller);
38
- $method = $class->getMethod(URI::getAction());
39
+ $method = $class->getMethod(Request::getAction());
40
- $method->invokeArgs(self::$controller, URI::getArguments());
41
+ $method->invokeArgs(self::$controller, Request::getArguments());
42
$run = TRUE;
43
}
44
0 commit comments