env returns a default value
This commit is contained in:
parent
52d8e4c626
commit
4b543b0807
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
if (!function_exists('env')) {
|
if (!function_exists('env')) {
|
||||||
function env(string $name): ?string
|
function env(string $name, ?string $default = null): ?string
|
||||||
{
|
{
|
||||||
return $_ENV[$name];
|
return $_ENV[$name] ?? $default;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -21,4 +21,16 @@ class EnvironmentTest extends TestCase
|
||||||
|
|
||||||
$this->assertSame('prod', env('APP_ENV'));
|
$this->assertSame('prod', env('APP_ENV'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @test */
|
||||||
|
public function it_returns_a_default_value()
|
||||||
|
{
|
||||||
|
$this->assertSame('local', env('APP_ENV', 'local'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/** @test */
|
||||||
|
public function it_returns_null_if_there_is_no_default()
|
||||||
|
{
|
||||||
|
$this->assertNull(env('APP_ENV'));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue