%PDF- %PDF-
| Direktori : /var/www/pjc/vendor/laravel/telescope/src/Http/Controllers/ |
| Current File : /var/www/pjc/vendor/laravel/telescope/src/Http/Controllers/RedisController.php |
<?php
namespace Laravel\Telescope\Http\Controllers;
use Laravel\Telescope\EntryType;
use Laravel\Telescope\Watchers\RedisWatcher;
class RedisController extends EntryController
{
/**
* The entry type for the controller.
*
* @return string
*/
protected function entryType()
{
return EntryType::REDIS;
}
/**
* The watcher class for the controller.
*
* @return string
*/
protected function watcher()
{
return RedisWatcher::class;
}
}