Problem::index PHP 메소드

index() 공개 메소드

PAGE: index This method handles the error page that will be shown when a page is not found
public index ( )
    public function index()
    {
        // load views
        require APP . 'view/_templates/header.php';
        require APP . 'view/problem/index.php';
        require APP . 'view/_templates/footer.php';
    }
Problem