Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion src/Illuminate/Foundation/Http/Middleware/TrimStrings.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,25 @@ protected function transform($key, $value)
{
$except = array_merge($this->except, static::$neverTrim);

if (in_array($key, $except, true) || ! is_string($value)) {
if ($this->shouldSkip($key, $except) || ! is_string($value)) {
return $value;
}

return Str::trim($value);
}

/**
* Determine if the given key should be skipped.
*
* @param string $key
* @param array $except
* @return bool
*/
protected function shouldSkip($key, $except)
{
return in_array($key, $except, true);
}

/**
* Indicate that the given attributes should never be trimmed.
*
Expand Down