Yoast\WP\SEO\AI\Content_Planner\Application
Content_Outline_Command_Handler::__construct
The constructor.
Метод класса: Content_Outline_Command_Handler{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Content_Outline_Command_Handler = new Content_Outline_Command_Handler(); $Content_Outline_Command_Handler->__construct( $recent_content_collector, $token_manager, $request_handler, $consent_handler );
- $recent_content_collector(Recent_Content_Collector) (обязательный)
- The recent content collector.
- $token_manager(Token_Manager) (обязательный)
- The token manager.
- $request_handler(Request_Handler) (обязательный)
- The request handler.
- $consent_handler(Consent_Handler) (обязательный)
- The consent handler.
Код Content_Outline_Command_Handler::__construct() Content Outline Command Handler:: construct Yoast 27.8
public function __construct(
Recent_Content_Collector $recent_content_collector,
Token_Manager $token_manager,
Request_Handler $request_handler,
Consent_Handler $consent_handler
) {
$this->recent_content_collector = $recent_content_collector;
$this->token_manager = $token_manager;
$this->request_handler = $request_handler;
$this->consent_handler = $consent_handler;
}