FOC\Authenticate\Auth\MultiColumnAuthenticate::__construct PHP Method

__construct() public method

Besides the keys specified in BaseAuthenticate::$_defaultConfig, MultiColumnAuthenticate uses the following extra keys: - 'columns' Array of columns to check username form input against
public __construct ( Cake\Controller\ComponentRegistry $registry, array $config )
$registry Cake\Controller\ComponentRegistry The Component registry used on this request.
$config array Array of config to use.
    public function __construct(ComponentRegistry $registry, $config)
    {
        $this->_registry = $registry;
        $this->config(['columns' => []]);
        $this->config($config);
    }
MultiColumnAuthenticate