Skip to content

Instantly share code, notes, and snippets.

@sirawitpra
Created April 24, 2017 07:58
Show Gist options
  • Save sirawitpra/7c594a56d3a9fd0a88916b7d63879374 to your computer and use it in GitHub Desktop.
Save sirawitpra/7c594a56d3a9fd0a88916b7d63879374 to your computer and use it in GitHub Desktop.
<?php
namespace Illuminate\Foundation\Http\Middleware;
class ConvertEmptyStringsToNull extends TransformsRequest
{
/**
* Transform the given value.
*
* @param string $key
* @param mixed $value
* @return mixed
*/
protected function transform($key, $value)
{
return is_string($value) && $value === '' ? null : $value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment