for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of Symplify
* Copyright (c) 2016 Tomas Votruba (http://tomasvotruba.cz).
*/
namespace Symplify\MultiCodingStandard\Console\Style;
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Style\StyleInterface;
use Symfony\Component\Console\Style\SymfonyStyle;
final class StyleFactory
{
/**
* @var InputInterface
private $input;
* @var OutputInterface
private $output;
public function __construct(InputInterface $input, OutputInterface $output)
$this->input = $input;
$this->output = $output;
}
* @return StyleInterface
public function create()
return new SymfonyStyle($this->input, $this->output);