for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Sylius\ShopApiPlugin\Command;
use Sylius\Component\Core\Model\ShopUserInterface;
class SetDefaultAddress
{
/**
* @var mixed
*/
public $id;
* @var ShopUserInterface
public $user;
public function __construct($id, ShopUserInterface $user)
$this->id = $id;
$this->user = $user;
}