for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Palmtree\Csv\Formatter;
/**
* Null formatter. Returns the value as is.
*/
class NullFormatter implements FormatterInterface
{
* @inheritdoc
public function format($value)
return $value;
}