golden hour
/home/godaofbq/hyperxpod.com/wp-content/plugins/wordpress-seo/src/introductions/domain
⬆️ Go Up
Upload
File/Folder
Size
Actions
introduction-interface.php
598 B
Del
OK
introduction-item.php
997 B
Del
OK
introductions-bucket.php
863 B
Del
OK
invalid-user-id-exception.php
811 B
Del
OK
Edit: introductions-bucket.php
<?php namespace Yoast\WP\SEO\Introductions\Domain; /** * A collection domain object. */ class Introductions_Bucket { /** * Holds the introductions. * * @var Introduction_Item[] */ private $introductions; /** * The constructor. */ public function __construct() { $this->introductions = []; } /** * Adds an introduction to this bucket. * * @param Introduction_Item $introduction The introduction. * * @return void */ public function add_introduction( Introduction_Item $introduction ) { $this->introductions[] = $introduction; } /** * Returns the array representation of the introductions. * * @return array */ public function to_array() { // No sorting here because that is done in JS. return \array_map( static function ( $item ) { return $item->to_array(); }, $this->introductions ); } }
Save