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