File "ConvertEmptyCellValuesToNull.php"
Full Path: /var/www/html/back/vendor/maatwebsite/excel/src/Middleware/ConvertEmptyCellValuesToNull.php
File size: 316 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace Maatwebsite\Excel\Middleware;
class ConvertEmptyCellValuesToNull extends CellMiddleware
{
/**
* @param mixed $value
* @return mixed
*/
public function __invoke($value, callable $next)
{
return $next(
$value === '' ? null : $value
);
}
}