Barryvdh\Debugbar\DataCollector\AuthCollector::__construct PHP Method

__construct() public method

public __construct ( Illuminate\Auth\AuthManager $auth )
$auth Illuminate\Auth\AuthManager
    public function __construct($auth)
    {
        $this->auth = $auth;
    }

Usage Example

 /**
  * @param \Illuminate\Auth\AuthManager $auth
  * @param array $guards
  */
 public function __construct($auth, $guards)
 {
     parent::__construct($auth);
     $this->guards = $guards;
 }