master

laravel/framework

Last updated at: 29/12/2023 09:23

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
{
    //
}