public function testIsNotEnv()
 {
     // arrange
     $env = 'backend-local';
     // act
     $result = is_env('production', $env);
     // assert
     $this->assertEquals(false, $result);
 }
Beispiel #2
0
 function is_production($env = false)
 {
     return is_env('production', $env);
 }