for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MyOnlineStore\Bundle\RabbitMqManagerBundle\Configuration\Supervisor;
use Supervisor\Configuration\Section\Program;
use Supervisor\Configuration\Section\RpcInterface;
use Supervisor\Configuration\Section\Supervisorctl;
use Supervisor\Configuration\Section\Supervisord;
use Supervisor\Configuration\Section\UnixHttpServer;
class SupervisorSectionFactory implements SupervisorSectionFactoryInterface
{
/**
* @inheritdoc
*/
public function createSupervisord(array $properties = [])
return new Supervisord($properties);
}
public function createRpcInterface($name, array $properties = [])
return new RpcInterface($name, $properties);
public function createSupervisorctl(array $properties = [])
return new Supervisorctl($properties);
public function createProgram($name, array $properties = [])
return new Program($name, $properties);
public function createUnixHttpServer(array $properties = [])
return new UnixHttpServer($properties);