403Webshell
Server IP : 213.186.33.2  /  Your IP : 216.73.216.39
Web Server : Apache
System : Linux webm005.cluster102.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User : symetry ( 21728)
PHP Version : 8.2.31
Disable Function : _dyuweyrj4,_dyuweyrj4r,dl
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /home/symetry/www/wp-content/plugins/wordpress-seo/src/task-list/domain/components/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /home/symetry/www/wp-content/plugins/wordpress-seo/src/task-list/domain/components/copy-set.php
<?php
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure.
namespace Yoast\WP\SEO\Task_List\Domain\Components;

/**
 * This class describes a set of copy.
 */
class Copy_Set {

	/**
	 * The title copy.
	 *
	 * @var string
	 */
	private $title;

	/**
	 * The why copy.
	 *
	 * @var string
	 */
	private $why;

	/**
	 * The how copy.
	 *
	 * @var string
	 */
	private $how;

	/**
	 * The constructor.
	 *
	 * @param string $title The title copy.
	 * @param string $why   The why copy.
	 * @param string $how   The how copy.
	 */
	public function __construct(
		string $title,
		string $why,
		?string $how = null
	) {
		$this->title = $title;
		$this->why   = $why;
		$this->how   = $how;
	}

	/**
	 * Returns an array representation of the copy set data.
	 *
	 * @return array<string, string|bool> Returns in an array format.
	 */
	public function to_array(): array {
		return [
			'title' => $this->title,
			'why'   => $this->why,
			'how'   => $this->how,
		];
	}
}

Youez - 2016 - github.com/yon3zu
LinuXploit