Automattic\WooCommerce\Api\Attributes
PublicAccess{}
[Attribute( Attribute::TARGET_CLASS | Attribute::TARGET_PROPERTY )]No Hooks.
Usage
$PublicAccess = new PublicAccess(); // use class methods
Methods
- public authorize()
PublicAccess{} PublicAccess{} code WC 10.9.4
final class PublicAccess {
/**
* Always grants access.
*/
public function authorize(): bool {
return true;
}
}