ValidatePostSize.php
TLDR
This file defines a class ValidatePostSize
that extends the Middleware
class and resides in the Illuminate\Foundation\Http\Middleware
namespace.
Classes
ValidatePostSize
This class extends the Middleware
class and represents the middleware for validating the size of the post data in an HTTP request.
<?php
namespace Illuminate\Foundation\Http\Middleware;
use Illuminate\Http\Middleware\ValidatePostSize as Middleware;
class ValidatePostSize extends Middleware
{
//
}