SimpleSAML\Module\saml\Auth\Process\FilterScopes::__construct PHP Метод

__construct() публичный Метод

Constructor for the processing filter.
public __construct ( &$config, mixed $reserved )
$reserved mixed For future use.
    public function __construct(&$config, $reserved)
    {
        parent::__construct($config, $reserved);
        assert('is_array($config)');
        if (array_key_exists('attributes', $config) && !empty($config['attributes'])) {
            $this->scopedAttributes = $config['attributes'];
        }
    }