18 lines
248 B
PHP
18 lines
248 B
PHP
<?php
|
|
|
|
namespace App\Helpers;
|
|
|
|
|
|
class Helper
|
|
{
|
|
public static function isProduction()
|
|
{
|
|
return env('APP_ENV') === 'production';
|
|
}
|
|
|
|
public static function isStaging()
|
|
{
|
|
return env('APP_ENV') === 'staging';
|
|
}
|
|
}
|