1234567891011121314151617181920212223242526272829 |
- <?php namespace App\Facades\Servers\Logs;
- use Illuminate\Support\Facades\Facade;
- /**
- * @method static mixed log(string $name,string $message,array $content=[],int $level=Logger::INFO,array $options=[])
- * @method static mixed debug(string $name,string $message,array $content=[],array $options=[])
- * @method static mixed info(string $name,string $message,array $content=[],array $options=[])
- * @method static mixed notice(string $name,string $message,array $content=[],array $options=[])
- * @method static mixed warning(string $name,string $message,array $content=[],array $options=[])
- * @method static mixed error(string $name,string $message,array $content=[],array $options=[])
- * @method static mixed critical(string $name,string $message,array $content=[],array $options=[])
- * @method static mixed alert(string $name,string $message,array $content=[],array $options=[])
- * @method static mixed emergency(string $name,string $message,array $content=[],array $options=[])
- *
- * @see \App\Servers\Logs\Log
- */
- class Log extends Facade
- {
- /**
- * Get the registered name of the component.
- *
- * @return string
- */
- protected static function getFacadeAccessor()
- {
- return 'App\Servers\Logs\Log';
- }
- }
|