Files
php-flasher/src/Cli/Prime/CliFactory.php
T
KHOUBZA Younes ac6d046c63 Prepare v1.0 release
rename template adapter to flasher, and add title to base notification class

Wip
2022-05-16 08:18:15 +01:00

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');
}
}