for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Sylius\ShopApiPlugin\View;
class PaymentView
{
/**
* @var string
*/
public $state;
* @var PaymentMethodView
public $method;
* @var PriceView
public $price;
public function __construct()
$this->method = new PaymentMethodView();
$this->price = new PriceView();
}