Jarves\Configuration\Field::canPropertyBeExported PHP Method

canPropertyBeExported() public method

public canPropertyBeExported ( $k )
    public function canPropertyBeExported($k)
    {
        if ('requiredRegex' === $k) {
            if (null === $this->requiredRegex) {
                return false;
            }
        }
        return true;
    }
Field