You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-06 13:02:55 +01:00
28 lines
1.1 KiB
PHP
28 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace Flasher\Prime;
|
|
|
|
use Flasher\Prime\Config\ConfigInterface;
|
|
use Flasher\Prime\TestsNotification\NotificationBuilderInterface;
|
|
use Flasher\Prime\TestsNotification\NotificationInterface;
|
|
|
|
/**
|
|
* @method NotificationBuilderInterface type($type, $message = null, array $options = array())
|
|
* @method NotificationBuilderInterface message($message)
|
|
* @method NotificationBuilderInterface options($options)
|
|
* @method NotificationBuilderInterface setOption($name, $value)
|
|
* @method NotificationBuilderInterface unsetOption($name)
|
|
* @method NotificationBuilderInterface success($message = null, array $options = array())
|
|
* @method NotificationBuilderInterface error($message = null, array $options = array())
|
|
* @method NotificationBuilderInterface info($message = null, array $options = array())
|
|
* @method NotificationBuilderInterface warning($message = null, array $options = array())
|
|
* @method NotificationInterface getNotification()
|
|
*/
|
|
final class Flasher extends AbstractManager
|
|
{
|
|
public function getDefaultDriver()
|
|
{
|
|
return $this->config->get('default');
|
|
}
|
|
}
|