Airship\Engine\Security\CSRF::reconfigure PHP Method

reconfigure() public method

Only use this if you know what you are doing.
public reconfigure ( array $options = [] )
$options array
    public function reconfigure(array $options = [])
    {
        foreach ($options as $opt => $val) {
            switch ($opt) {
                case 'recycleAfter':
                case 'hmacIP':
                case 'expireOld':
                case 'sessionIndex':
                    $this->{$opt} = $val;
                    break;
                default:
                    throw new InvalidConfig(\trk('errors.object.invalid_property', $opt, __CLASS__));
            }
        }
    }