You appear to be a bot. Output may be restricted
Description
Indexable_Post_Indexing_Action constructor
Usage
Abstract_Link_Indexing_Action::__construct( $link_builder, $repository, $wpdb );
Parameters
- $link_builder
- ( Indexable_Link_Builder ) required – The indexable link builder.
- $repository
- ( Indexable_Repository ) required – The indexable repository.
- $wpdb
- ( wpdb ) required – The WordPress database instance.
Returns
void
Source
File name: wordpress-seo/src/actions/indexing/abstract-link-indexing-action.php
Lines:
1 to 9 of 9
public function __construct( Indexable_Link_Builder $link_builder, Indexable_Repository $repository, wpdb $wpdb ) { $this->link_builder = $link_builder; $this->repository = $repository; $this->wpdb = $wpdb; }