mirror of
https://github.com/snipe/snipe-it.git
synced 2025-03-05 20:52:15 -08:00
Remove extraneous backslash
This commit is contained in:
parent
5e94726ec1
commit
9a66f6a254
|
@ -11,7 +11,7 @@ abstract class Request extends FormRequest
|
||||||
public function json($key = null, $default = null)
|
public function json($key = null, $default = null)
|
||||||
{
|
{
|
||||||
if ($this->ajax() || $this->wantsJson()) {
|
if ($this->ajax() || $this->wantsJson()) {
|
||||||
json_decode($this->getContent(), false, 512, \JSON_THROW_ON_ERROR); // ignore output, just throw
|
json_decode($this->getContent(), false, 512, JSON_THROW_ON_ERROR); // ignore output, just throw
|
||||||
}
|
}
|
||||||
return parent::json($key, $default);
|
return parent::json($key, $default);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue