| 1 | <?php |
||
| 12 | abstract class AbstractShare implements IShare { |
||
| 13 | /** @var string[] */ |
||
| 14 | private $forbiddenCharacters; |
||
| 15 | 982 | ||
| 16 | 982 | public function __construct() { |
|
| 19 | 980 | ||
| 20 | 980 | /** |
|
| 21 | 980 | * @param string $path |
|
| 22 | 342 | * @throws InvalidPathException |
|
| 23 | */ |
||
| 24 | protected function verifyPath(string $path): void { |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param string[] $charList |
||
| 34 | */ |
||
| 35 | public function setForbiddenChars(array $charList): void { |
||
| 38 | } |
||
| 39 |