for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sylius\ShopApiPlugin\Factory;
use Sylius\ShopApiPlugin\View\PriceView;
final class PriceViewFactory implements PriceViewFactoryInterface
{
/**
* {@inheritdoc}
*/
public function create($price)
$priceView = new PriceView();
$priceView->current = $price;
return $priceView;
}