You've already forked php-flasher
mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-04-05 12:32:55 +01:00
ac6d046c63
rename template adapter to flasher, and add title to base notification class Wip
19 lines
391 B
PHP
19 lines
391 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the PHPFlasher package.
|
|
* (c) Younes KHOUBZA <younes.khoubza@gmail.com>
|
|
*/
|
|
|
|
namespace Flasher\Cli\Prime;
|
|
|
|
use Flasher\Prime\Factory\NotificationFactory;
|
|
|
|
final class CliFactory extends NotificationFactory
|
|
{
|
|
public function createNotificationBuilder()
|
|
{
|
|
return new CliBuilder($this->getStorageManager(), new Notification(), 'cli');
|
|
}
|
|
}
|