| 1 | <?php |
||
| 13 | abstract class AbstractFactory implements FactoryInterface |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @return string |
||
| 17 | */ |
||
| 18 | protected function getDelimiter() |
||
| 22 | |||
| 23 | /** |
||
| 24 | * @return string |
||
| 25 | */ |
||
| 26 | protected function getEnclosure() |
||
| 30 | |||
| 31 | /** |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | protected function getEscapeCharacter() |
||
| 38 | } |