File "PublicPolicy.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/fluentform/app/Http/Policies/PublicPolicy.php
File size: 402 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace FluentForm\App\Http\Policies;


use FluentForm\Framework\Request\Request;
use FluentForm\Framework\Foundation\Policy;

class PublicPolicy extends Policy
{
    /**
     * Check permission for any method
     *
     * @param \FluentForm\Framework\Request\Request $request
     * @return bool
     */
    public function verifyRequest(Request $request)
    {
        return true;
    }
}