Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 257 Bytes

File metadata and controls

24 lines (15 loc) · 257 Bytes

ENV Class

Class created to manage env file

Use Of

$env = new Env('.env');

env('DB_CONNECTION');

/*
 * To add a variable
 */
env_add_variable('APP_URL','localhost');

/*
 * To delete a variable
 */
env_rm_variable('APP_URL');