for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bankiru\Seo\Page;
class SeoPage implements SeoPageInterface
{
/** @var HtmlMetaInterface[] */
protected $meta = [];
/** @var string */
protected $title;
protected $canonical;
/** @var string[] */
protected $htmlAttributes = [];
protected $breadcrumbs = [];
/** @return HtmlMetaInterface[] */
public function getMeta()
return $this->meta;
}
/** @return string */
public function getTitle()
return $this->title;
/** @return string[] */
public function getHtmlAttributes()
return $this->htmlAttributes;
/** @return string|null */
public function getCanonicalLink()
return $this->canonical;
public function getBreadcrumbs()
return $this->breadcrumbs;