🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-19 14:13:35 | 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: InvalidArgument.php
Writable
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\GoogleListingsAndAds\Exception; use InvalidArgumentException; defined( 'ABSPATH' ) || exit; /** * Class InvalidArgument * * @package Automattic\WooCommerce\GoogleListingsAndAds\Exception */ class InvalidArgument extends InvalidArgumentException implements GoogleListingsAndAdsException { /** * Create a new instance of the exception when an argument value is not an object. * * @param string $name The name of the argument. * @param string $method The name of the method/function. * * @return static */ public static function not_object( string $name, string $method ) { return new static( sprintf( 'The argument "%s" provided to the function "%s" must be an object.', $name, $method ) ); } }
💾 Save Changes
❌ Cancel