Log.php 1.2 KB

1234567891011121314151617181920212223242526272829
  1. <?php namespace App\Facades\Servers\Logs;
  2. use Illuminate\Support\Facades\Facade;
  3. /**
  4. * @method static mixed log(string $name,string $message,array $content=[],int $level=Logger::INFO,array $options=[])
  5. * @method static mixed debug(string $name,string $message,array $content=[],array $options=[])
  6. * @method static mixed info(string $name,string $message,array $content=[],array $options=[])
  7. * @method static mixed notice(string $name,string $message,array $content=[],array $options=[])
  8. * @method static mixed warning(string $name,string $message,array $content=[],array $options=[])
  9. * @method static mixed error(string $name,string $message,array $content=[],array $options=[])
  10. * @method static mixed critical(string $name,string $message,array $content=[],array $options=[])
  11. * @method static mixed alert(string $name,string $message,array $content=[],array $options=[])
  12. * @method static mixed emergency(string $name,string $message,array $content=[],array $options=[])
  13. *
  14. * @see \App\Servers\Logs\Log
  15. */
  16. class Log extends Facade
  17. {
  18. /**
  19. * Get the registered name of the component.
  20. *
  21. * @return string
  22. */
  23. protected static function getFacadeAccessor()
  24. {
  25. return 'App\Servers\Logs\Log';
  26. }
  27. }