Files
php-flasher/Toastr.php
T
2020-12-06 04:03:14 +01:00

30 lines
421 B
PHP

<?php
namespace Flasher\Toastr\Prime;
use Flasher\Prime\Notification\Notification;
final class Toastr extends Notification
{
/**
* @var string
*/
private $title;
/**
* @return string
*/
public function getTitle()
{
return $this->title;
}
/**
* @param string $title
*/
public function setTitle($title)
{
$this->title = $title;
}
}