Yoast\WP\SEO\Schema_Aggregator\Domain
Schema_Piece_Collection::__construct
Class constructor.
Метод класса: Schema_Piece_Collection{}
Хуков нет.
Возвращает
null. Ничего (null).
Использование
$Schema_Piece_Collection = new Schema_Piece_Collection(); $Schema_Piece_Collection->__construct( $pieces );
- $pieces(array
) - Optional array of Schema_Piece objects.
По умолчанию:[]
Код Schema_Piece_Collection::__construct() Schema Piece Collection:: construct Yoast 28.3
public function __construct( array $pieces = [] ) {
foreach ( $pieces as $piece ) {
$this->add( $piece );
}
}