for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CultuurNet\UDB3\EventExport\Command;
use CultuurNet\UDB3\EventExport\EventExportQuery;
use ValueObjects\Web\EmailAddress;
class ExportEventsAsOOXMLJSONDeserializer extends ExportEventsJSONDeserializer
{
/**
* {@inheritdoc}
*/
protected function createCommand(
EventExportQuery $query,
EmailAddress $address = null,
$selection = null,
$include = null
) {
return new ExportEventsAsOOXML(
$query,
$address,
$selection,
$include
);
}