function UserDataCollector::__construct

Parameters

\Drupal\Core\Session\AccountInterface $currentUser:

\Drupal\Core\Entity\EntityManagerInterface $entityManager:

\Drupal\Core\Config\ConfigFactoryInterface $configFactory:

\Drupal\Core\Authentication\AuthenticationCollectorInterface $providerCollector:

File

webprofiler/src/DataCollector/UserDataCollector.php, line 48

Class

UserDataCollector
Class UserDataCollector

Namespace

Drupal\webprofiler\DataCollector

Code

public function __construct(AccountInterface $currentUser, EntityManagerInterface $entityManager, ConfigFactoryInterface $configFactory, AuthenticationCollectorInterface $providerCollector) {
    $this->currentUser = $currentUser;
    $this->entityManager = $entityManager;
    $this->configFactory = $configFactory;
    $this->providerCollector = $providerCollector;
}