PHP code example of mf / symfony-console-subscriber
1. Go to this page and download the library: Download mf/symfony-console-subscriber library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mf / symfony-console-subscriber example snippets
$io->note('note');
// vs Dispatching
$eventDispatcher->dispatch(new NoteEvent('Some note.'));
$io = new SymfonyStyle();
$subscriber = new ConsoleSubscriber();
$subscriber->setIo($io);
$eventDispatcher->addSubscriber($subscriber);