%PDF- %PDF-
| Direktori : /home/tjamichg/cursos.tjamich.gob.mx/vendor/league/csv/src/Plugin/ |
| Current File : /home/tjamichg/cursos.tjamich.gob.mx/vendor/league/csv/src/Plugin/SkipNullValuesFormatter.php |
<?php
/**
* This file is part of the League.csv library
*
* @license http://opensource.org/licenses/MIT
* @link https://github.com/thephpleague/csv/
* @version 8.2.3
* @package League.csv
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace League\Csv\Plugin;
/**
* A class to remove null value from data before insertion into a CSV
*
* @package League.csv
* @since 7.0.0
*
*/
class SkipNullValuesFormatter
{
/**
* remove null value form the submitted array
*
* @param array $row
*
* @return array
*/
public function __invoke(array $row)
{
return array_filter($row, function ($value) {
return null !== $value;
});
}
}