for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* MIT License
* Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
*/
namespace SprykerEco\Zed\Econda\Business\Exporter\Writer\File\NameGenerator;
class CsvNameGenerator implements NameGeneratorInterface
{
* @param string $type
* @param string $localeName
* @param string $number
*
* @return string
public function generateFileName($type, $localeName, $number = '')
return $type . '_' . $localeName . $number . '.csv';
}