for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author stev leibelt <[email protected]>
* @since 2015-05-06
*/
namespace Net\Bazzline\Component\Csv;
* Class AbstractFactory
* @package Net\Bazzline\Component\Csv
abstract class AbstractFactory implements FactoryInterface
{
* @return string
protected function getDelimiter()
return ',';
}
protected function getEnclosure()
return '"';
protected function getEscapeCharacter()
return "\\";