Skip to content

Commit 0aad1b9

Browse files
committed
Adds PHP.net CfP-Parser
1 parent 977f99d commit 0aad1b9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/Command/ParseEvents.php

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
use Callingallpapers\Parser\JoindinCfpParser;
3333
use Callingallpapers\Parser\Lanyrd\LanyrdCfpParser;
3434
use Callingallpapers\Service\TimezoneService;
35+
use Callingallpapers\Parser\PhpNetCfpParser;
3536
use Callingallpapers\Writer\ApiCfpWriter;
3637
use GuzzleHttp\Client;
3738
use Symfony\Component\Console\Command\Command;
@@ -79,6 +80,10 @@ protected function execute(InputInterface $input, OutputInterface $output)
7980

8081
$parser = new LanyrdCfpParser(new TimezoneService(new Client(), $config['timezonedb_token']));
8182
$parser->parse($writer);
83+
84+
$parser = new PhpNetCfpParser();
85+
$parser->parse($writer);
86+
8287
$parser = new JoindinCfpParser();
8388
$parser->parse($writer);
8489
}

0 commit comments

Comments
 (0)