Allow custom forbidden chars

This commit is contained in:
Juan Pablo Villafáñez 2017-12-01 13:00:13 +01:00
commit 5ad265e964

View file

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