📁 File Manager Pro
v10.0.2 | PHP: 8.1.34
Server: LiteSpeed
2026-06-26 13:36:02
📂
/
/
home
/
pallabnv
/
public_html
/
wp-content__3bb9dea
/
plugins
/
woocommerce
/
src
/
Api
/
Attributes
✏️
Editing: PublicAccess.php
<?php declare(strict_types=1); namespace Automattic\WooCommerce\Api\Attributes; use Attribute; /** * Marks a query or mutation as publicly accessible without authentication. * * When present, the generated resolver skips all capability checks, allowing * any user (including unauthenticated visitors) to execute the operation. * * Mutually exclusive with #[RequiredCapability] on the same class. */ #[Attribute( Attribute::TARGET_CLASS )] final class PublicAccess { }
💾 Save Changes
❌ Cancel