Files
php-flasher/Producer/PnotifyProducer.php
T
2020-12-02 00:57:12 +01:00

25 lines
476 B
PHP

<?php
namespace Flasher\PFlasher\Prime\TestsProducer;
use Flasher\Prime\AbstractFlasher;
final class PnotifyProducer extends AbstractFlasher
{
/**
* @inheritDoc
*/
public function getRenderer()
{
return 'pnotify';
}
/**
* @inheritDoc
*/
public function warning($message, $title = '', $context = array(), array $stamps = array())
{
return $this->render('notice', $message, $title, $context, $stamps);
}
}