🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 12:44:06 | PHP 8.1.34
📂
/ (Root)
/
home
/
therahul
/
thedasstores.com
/
wp-content
/
plugins
/
google-listings-and-ads
/
src
/
Exception
📍 /home/therahul/thedasstores.com/wp-content/plugins/google-listings-and-ads/src/Exception
🔄 Refresh
✏️
Editing: InvalidMeta.php
Writable
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\Exception; use LogicException; defined( 'ABSPATH' ) || exit; /** * Class InvalidMeta * * @package Automattic\WooCommerce\GoogleListingsAndAds\Exception */ class InvalidMeta extends LogicException implements GoogleListingsAndAdsException { /** * Create a new instance of the exception when an invalid meta key is provided. * * @param string $key The meta key. * * @return static */ public static function invalid_key( string $key ) { return new static( sprintf( 'The meta key "%s" is not valid.', $key ) ); } }
💾 Save Changes
❌ Cancel