You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Log.php 1.0KB

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. namespace Illuminate\Support\Facades;
  3. /**
  4. * @method static void emergency(string $message, array $context = [])
  5. * @method static void alert(string $message, array $context = [])
  6. * @method static void critical(string $message, array $context = [])
  7. * @method static void error(string $message, array $context = [])
  8. * @method static void warning(string $message, array $context = [])
  9. * @method static void notice(string $message, array $context = [])
  10. * @method static void info(string $message, array $context = [])
  11. * @method static void debug(string $message, array $context = [])
  12. * @method static void log($level, string $message, array $context = [])
  13. * @method static mixed channel(string $channel = null)
  14. * @method static \Psr\Log\LoggerInterface stack(array $channels, string $channel = null)
  15. *
  16. * @see \Illuminate\Log\Logger
  17. */
  18. class Log extends Facade
  19. {
  20. /**
  21. * Get the registered name of the component.
  22. *
  23. * @return string
  24. */
  25. protected static function getFacadeAccessor()
  26. {
  27. return 'log';
  28. }
  29. }