File "Policy.php"
Full Path: /home/romayxjt/public_html/wp-content/plugins/fluentform/vendor/wpfluent/framework/src/WPFluent/Foundation/Policy.php
File size: 251 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace FluentForm\Framework\Foundation;
abstract class Policy
{
/**
* Fallback method even if verifyRequest is not implemented.
* @return bool true
*/
public function __returnTrue()
{
return true;
}
}