class ProfilerStorageFactory in Devel 4.x
Same name and namespace in other branches
- 8.3 webprofiler/src/Profiler/ProfilerStorageFactory.php \Drupal\webprofiler\Profiler\ProfilerStorageFactory
- 8 webprofiler/src/Profiler/ProfilerStorageFactory.php \Drupal\webprofiler\Profiler\ProfilerStorageFactory
- 8.2 webprofiler/src/Profiler/ProfilerStorageFactory.php \Drupal\webprofiler\Profiler\ProfilerStorageFactory
Class ProfilerStorageFactory.
Hierarchy
- class \Drupal\webprofiler\Profiler\ProfilerStorageFactory
Expanded class hierarchy of ProfilerStorageFactory
File
- webprofiler/
src/ Profiler/ ProfilerStorageFactory.php, line 11
Namespace
Drupal\webprofiler\ProfilerView source
class ProfilerStorageFactory {
/**
* @param \Drupal\Core\Config\ConfigFactoryInterface $config
* @param \Symfony\Component\DependencyInjection\ContainerInterface $container
*
* @return \Symfony\Component\HttpKernel\Profiler\ProfilerStorageInterface
*/
public static final function getProfilerStorage(ConfigFactoryInterface $config, ContainerInterface $container) {
$storage = $config
->get('webprofiler.config')
->get('storage') ?: 'profiler.database_storage';
return $container
->get($storage);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ProfilerStorageFactory:: |
final public static | function |