mirror of
https://github.com/php-flasher/php-flasher.git
synced 2026-03-31 23:17:47 +01:00
18 lines
282 B
PHP
18 lines
282 B
PHP
<?php
|
|
|
|
namespace Flasher\Cli\Prime\Notifier;
|
|
|
|
use Flasher\Prime\Envelope;
|
|
|
|
final class NullNotifier extends AbstractNotifier
|
|
{
|
|
public function renderEnvelope(Envelope $envelope)
|
|
{
|
|
}
|
|
|
|
public function isSupported()
|
|
{
|
|
return false;
|
|
}
|
|
}
|