for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
require_once __DIR__.'/CreateFlightBillCommandHandler.php';
require_once __DIR__.'/CreateFlightBillTransactionalCommandHandler.php';
/**
* @author Laurent De Coninck <[email protected]>
*/
class CreateFlightBillCommandHandlerFactory
{
* @return CreateFlightBillCommandHandler
public static function factory($db, $conf, $user, $langs){
return new CreateFlightBillTransactionalCommandHandler($db, $conf, $user, $langs);
}