for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Component\Taxonomy\Factory;
use Sylius\Component\Resource\Factory\FactoryInterface;
use Sylius\Component\Taxonomy\Model\TaxonInterface;
/**
* @author Mateusz Zalewski <[email protected]>
final class TaxonFactory implements TaxonFactoryInterface
{
* @var FactoryInterface
private $factory;
* @param FactoryInterface $factory
public function __construct(FactoryInterface $factory)
$this->factory = $factory;
}
* {@inheritdoc}
public function createNew()
return $this->factory->createNew();
public function createForParent(TaxonInterface $parent)
$taxon = $this->createNew();
$taxon->setParent($parent);
return $taxon;