for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sylius\ShopApiPlugin\View;
class ProductVariantView
{
/**
* @var string
*/
public $code;
public $name;
* @var array
public $axis = [];
public $nameAxis = [];
* @var PriceView
public $price;
public $images = [];
public $appliedPromotions = [];
public function __construct()
$this->price = new PriceView();
}