Skip to content

Commit c5b08b5

Browse files
committed
App
1 parent f8ba7f2 commit c5b08b5

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Engine/App.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<?php
22

33
namespace Engine;
4+
use \ReflectionClass;
45

56
/**
67
* Class App
@@ -35,9 +36,9 @@ public static function start(): void {
3536

3637
$class = new ReflectionClass(self::$controller);
3738

38-
$method = $class->getMethod(URI::getAction());
39+
$method = $class->getMethod(Request::getAction());
3940

40-
$method->invokeArgs(self::$controller, URI::getArguments());
41+
$method->invokeArgs(self::$controller, Request::getArguments());
4142
$run = TRUE;
4243
}
4344

0 commit comments

Comments
 (0)