/home/brandsfa/public_html/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
        );
    }
}