From bbe4997c571d7592c15e8e8fd626ce751b6bd217 Mon Sep 17 00:00:00 2001 From: Uriel Wilson Date: Thu, 11 Aug 2022 13:36:27 -0500 Subject: [PATCH] Update README.md --- README.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index 35d0442..310d9a7 100644 --- a/README.md +++ b/README.md @@ -158,7 +158,6 @@ As of version 0.12 we can use the `Kernel` to setup environment like so: ```php use DevUri\Config\Kernel; -use function Env\env; if ( file_exists( dirname( __FILE__ ) . '/vendor/autoload.php' ) ) { require_once dirname( __FILE__ ) . '/vendor/autoload.php'; @@ -215,12 +214,11 @@ The Kernel setup follows a more project based WordPress Skeleton structure, with ├── vendor ``` -We can also opt not to use the Kernel WordPress Skeleton, assuming we are working on a full site build structure, and define our own by setting second param of **init** `$http_app->init('development', false)` to false. +We can also opt not to use the Kernel WordPress Skeleton, assuming we are working on a full site build structure, and define our own by setting second **init** param to **false** `$http_app->init('development', false)` . ```php use DevUri\Config\Kernel; -use function Env\env; if ( file_exists( dirname( __FILE__ ) . '/vendor/autoload.php' ) ) { require_once dirname( __FILE__ ) . '/vendor/autoload.php';