for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace MagentoHackathon\Composer\Magento\Factory;
use Composer\Package\PackageInterface;
use MagentoHackathon\Composer\Magento\Parser\Parser;
use MagentoHackathon\Composer\Magento\Parser\PathTranslationParser;
use MagentoHackathon\Composer\Magento\ProjectConfig;
/**
* Class PathTranslationParserFactory
* @package MagentoHackathon\Composer\Magento\Parser
* @author Aydin Hassan <[email protected]>
*/
class PathTranslationParserFactory implements ParserFactoryInterface
{
* @var ParserFactoryInterface
protected $parserFactory;
* @var ProjectConfig
protected $config;
* @param ParserFactoryInterface $parserFactory
public function __construct(ParserFactoryInterface $parserFactory, ProjectConfig $config)
$this->parserFactory = $parserFactory;
$this->config = $config;
}
* @param PackageInterface $package
* @param string $sourceDir
* @return Parser
* @throws \ErrorException
public function make(PackageInterface $package, $sourceDir)
$parser = $this->parserFactory->make($package, $sourceDir);
if ($this->config->hasPathMappingTranslations()) {
$translations = $this->config->getPathMappingTranslations();
return new PathTranslationParser($parser, $translations);
return $parser;