Barryvdh\Debugbar\DataCollector\AuthCollector::collect PHP 메소드

collect() 공개 메소드

public collect ( )
    public function collect()
    {
        try {
            $user = $this->auth->user();
        } catch (\Exception $e) {
            $user = null;
        }
        return $this->getUserInformation($user);
    }