WPDKUserRoles::inactiveRoles PHP Method

inactiveRoles() public method

Deprecation: since 1.6.0 - Use statusRoles() instead
public inactiveRoles ( ) : array
return array
    public function inactiveRoles()
    {
        _deprecated_function(__CLASS__ . '::' . __FUNCTION__, '1.6.0', 'statusRoles()');
        // Calculate only if the property if note set
        if (empty($this->inactiveRoles)) {
            $this->statusRoles();
        }
        return $this->inactiveRoles;
    }