for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace A17\Twill\Http\Controllers\Front\Helpers;
class Seo
{
/**
* @var string|null
*/
public $title;
public $description;
* @var bool
public $nofollow = false;
* @var \A17\Twill\Models\Media|null
public $image;
* @var int
public $width;
public $height;
* @param string $title
* @return void
public function setTitle($title)
if (!empty($title)) {
$this->title = $title;
}
* @param string $description
public function setDescription($description)
if (!empty($description)) {
$this->description = $description;