Merge pull request #61 from jvillafanez/customForbiddenChars

Allow custom forbidden chars
This commit is contained in:
Robin Appelman 2017-12-01 17:00:47 +01:00 committed by GitHub
commit b61e738018
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -23,4 +23,8 @@ abstract class AbstractShare implements IShare {
}
}
}
public function setForbiddenChars(array $charList) {
$this->forbiddenCharacters = $charList;
}
}