Visithor\Renderer\RendererFactory::create PHP Méthode

create() public méthode

Create a new Renderer instance
public create ( string $type ) : Visithor\Renderer\Interfaces\RendererInterface
$type string Renderer type
Résultat Visithor\Renderer\Interfaces\RendererInterface Renderer instance
    public function create($type)
    {
        if ($type === Visithor::RENDERER_TYPE_DOT) {
            return new DotRenderer();
        }
        return new PrettyRenderer();
    }

Usage Example

 /**
  * Executes all business logic inside this command
  *
  * This method returns 0 if all executions passed. 1 otherwise.
  *
  * @param OutputInterface $output Output
  * @param array           $config Config
  * @param string          $format Format
  *
  * @return integer Execution return
  */
 protected function executeVisithor(OutputInterface $output, array $config, $format)
 {
     $renderer = $this->rendererFactory->create($format);
     $this->executor->build();
     $urlChain = $this->urlGenerator->generate($config);
     $result = $this->executor->execute($urlChain, $renderer, $output);
     $this->executor->destroy();
     return $result;
 }
All Usage Examples Of Visithor\Renderer\RendererFactory::create
RendererFactory