loadEnvironmentFromでenvをロードしてるわけではない。.env
を上書きしてるだけ。.env
とloadEnvironmentFrom()の引数の.env
が両方ロードされることもない
/**
* The environment file to load during bootstrapping.
*
* @var string
*/
protected $environmentFile = '.env';
public function loadEnvironmentFrom($file)
{
$this->environmentFile = $file;
return $this;
}