autoload.php
This file should be loaded in application entry point ("../index.php" for example).
It takes care of:
- Loading VELOX classes "../classes/" and "../app/".
- Loading VELOX functions "../functions/".
- Loading Composer "../vendor/" if available.
- Loading additional paths defined in "./additional.php".
Table of Contents
- BASE_PATH = dirname(__DIR__)
- App base path.
- START_TIME = microtime( rue)
- App start time.
Constants
BASE_PATH
App base path.
    public
    string
    BASE_PATH
    = dirname(__DIR__)
    
    
    
START_TIME
App start time.
    public
    float
    START_TIME
    = microtime(	rue)