<?php
namespace Yoast\WP\SEO\Editors\Domain\Seo;
class Title implements Seo_Plugin_Data_Interface {
private $title_template;
private $title_template_no_fallback;
public function __construct( string $title_template, string $title_template_no_fallback ) {
$this->title_template = $title_template;
$this->title_template_no_fallback = $title_template_no_fallback;
}
public function to_array(): array {
return [
'title_template' => $this->title_template,
'title_template_no_fallback' => $this->title_template_no_fallback,
];
}