mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 15:07:47 +01:00
30 lines
421 B
PHP
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;
|
|
}
|
|
}
|