| Path : /var/www/html/jewelry-pos/vendor/maatwebsite/excel/src/Middleware/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : /var/www/html/jewelry-pos/vendor/maatwebsite/excel/src/Middleware/ConvertEmptyCellValuesToNull.php |
<?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
);
}
}