• File: generator-endpoints-repository.php
  • Full Path: /home/docteuh/www/generator/application/generator-endpoints-repository.php
  • Date Modified: 06/23/2026 4:19 PM
  • File size: 729 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
// phpcs:disable Yoast.NamingConventions.NamespaceName.MaxExceeded
namespace Yoast\WP\SEO\AI\Generator\Application;

use Yoast\WP\SEO\AI\Generator\Infrastructure\Endpoints\Generator_Endpoint_Interface;
use Yoast\WP\SEO\Routes\Endpoint\Endpoints_Repository;

/**
 * Repository for endpoints.
 */
class Generator_Endpoints_Repository extends Endpoints_Repository {

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