🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-18 09:07:54 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
/
Notes
📍 /home/therahul/thedasstores.com/wp-content/plugins/google-listings-and-ads/src/Notes
🔄 Refresh
✏️
Editing: Note.php
Writable
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\Notes; use Automattic\WooCommerce\Admin\Notes\Note as NoteEntry; defined( 'ABSPATH' ) || exit; /** * Note interface. * * @since 1.7.0 * * @package Automattic\WooCommerce\GoogleListingsAndAds\Notes */ interface Note { /** * Get the note's unique name. * * @return string */ public function get_name(): string; /** * Check whether the note should be added. */ public function should_be_added(): bool; /** * Get the note entry. */ public function get_entry(): NoteEntry; }
💾 Save Changes
❌ Cancel