<?php
namespace App\Helpers;
use Illuminate\Support\Facades\App;
class AppHelper
{
const ENV_LOCAL = 'local';
const ENV_STAGE = 'stage';
public static function isDev(): bool
{
return App::environment() == self::ENV_LOCAL;
}
public static function isTest(): bool
{
return in_array(App::environment(), [self::ENV_LOCAL, self::ENV_STAGE]);
}
}