App.php 223 B

123456789101112131415161718
  1. <?php
  2. namespace UCore;
  3. class App
  4. {
  5. public static function is_debug(): bool
  6. {
  7. return config('app.debug');
  8. }
  9. public static function is_local(): bool
  10. {
  11. return app()->isLocal();
  12. }
  13. }