InfluxOW/laravel_ddd_ecommerce

View on GitHub
app/Application/Http/Middleware/VerifyCsrfToken.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

namespace App\Application\Http\Middleware;

use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware;

final class VerifyCsrfToken extends Middleware
{
    /**
     * The URIs that should be excluded from CSRF verification.
     *
     * @var array<int, string>
     *
     * @phpcsSuppress SlevomatCodingStandard.TypeHints.PropertyTypeHint
     */
    protected $except = [
        //
    ];
}