Skip to content
This repository has been archived by the owner on Jul 27, 2022. It is now read-only.

uppm/devermannotations

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Deverm-Annotations

class TestingController {
    /**
     * @modules\devermannotations\Route(route = "/hi", method = "GET")
     */
    public static function hello(){
        echo "HIII";
    }
}

$deverm = new modules\devermannotations\DevermAnnotations($router);
$deverm->addClass(TestingController::class);
$deverm->init();