Completed
Push — test ( d4aaf0...06ea2e )
by Temitope
02:33
created
src/Database/DatabaseConnection.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@  discard block
 block discarded – undo
21 21
 
22 22
 	public  function  __construct() 
23 23
 	{
24
-	    $this->loadEnv(); // load the environment variables
25
-	    $this->databaseName     =  getenv('databaseName');
24
+		$this->loadEnv(); // load the environment variables
25
+		$this->databaseName     =  getenv('databaseName');
26 26
 		$this->databaseHost     =  getenv('databaseHost');
27 27
 		$this->databaseDriver   =  getenv('databaseDriver');
28 28
 		$this->databaseUsername =  getenv('databaseUsername');
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
 	{
79 79
 		if (!getenv("APP_ENV")) {
80 80
 			$dotenv = new Dotenv(__DIR__.'/../../');
81
-		    $dotenv->load();
81
+			$dotenv->load();
82 82
 		}
83 83
 
84 84
 	}
Please login to merge, or discard this patch.