File "InvalidClass.php"

Full Path: /home/warrior1/public_html/plugins/google-listings-and-ads/src/Exception/InvalidClass.php
File size: 1.59 KB
MIME-type: text/x-php
Charset: utf-8

<?php
declare( strict_types=1 );

namespace Automattic\WooCommerce\GoogleListingsAndAds\Exception;

use LogicException;

/**
 * Class InvalidClass
 *
 * @package Automattic\WooCommerce\GoogleListingsAndAds\Exception
 */
class InvalidClass extends LogicException implements GoogleListingsAndAdsException {

	/**
	 * Create a new instance of the exception when a class should implement an interface but does not.
	 *
	 * @param string $class     The class name.
	 * @param string $interface The interface name.
	 *
	 * @return static
	 */
	public static function should_implement( string $class, string $interface ) {
		return new static(
			sprintf(
				'The class "%s" must implement the "%s" interface.',
				$class,
				$interface
			)
		);
	}

	/**
	 * Create a new instance of the exception when a class should NOT implement an interface but it does.
	 *
	 * @param string $class     The class name.
	 * @param string $interface The interface name.
	 *
	 * @return static
	 */
	public static function should_not_implement( string $class, string $interface ): InvalidClass {
		return new static(
			sprintf(
				'The class "%s" must NOT implement the "%s" interface.',
				$class,
				$interface
			)
		);
	}

	/**
	 * Create a new instance of the exception when a class should override a method but does not.
	 *
	 * @param string $class  The class name.
	 * @param string $method The method name.
	 *
	 * @return static
	 */
	public static function should_override( string $class, string $method ) {
		return new static(
			sprintf(
				'The class "%s" must override the "%s()" method.',
				$class,
				$method
			)
		);
	}
}