Yoast\WP\SEO\AI\Content_Planner\Application

Content_Planner_Endpoints_Repository{}Yoast 1.0└─ Endpoints_Repository

Repository for endpoints.

Хуков нет.

Использование

$Content_Planner_Endpoints_Repository = new Content_Planner_Endpoints_Repository();
// use class methods

Методы

  1. public __construct( Content_Planner_Endpoint_Interface ...$endpoints )

Код Content_Planner_Endpoints_Repository{} Yoast 27.7

class Content_Planner_Endpoints_Repository extends Endpoints_Repository {

	/**
	 * Constructs the repository.
	 *
	 * @param Content_Planner_Endpoint_Interface ...$endpoints The endpoints to add to the repository.
	 */
	public function __construct( Content_Planner_Endpoint_Interface ...$endpoints ) {
		parent::__construct( ...$endpoints );
	}
}