for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\LaravelExcel\Importers;
use Arcanedev\LaravelExcel\Contracts\Parser as ParserContract;
/**
* Class DefaultParser
*
* @package Arcanedev\LaravelExcel\DefaultParser
* @author ARCANEDEV <[email protected]>
*/
class DefaultParser implements ParserContract
{
/* -----------------------------------------------------------------
| Main Functions
| -----------------------------------------------------------------
* Transform the parsed data.
* @param array $row
* @return mixed
public function transform(array $row)
return $row;
}