for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Sylius\ShopApiPlugin\Request;
use Symfony\Component\HttpFoundation\Request;
final class RemoveAddressRequest
{
/**
* @var mixed
*/
private $id;
public function __construct(Request $request)
$this->id = $request->attributes->get('id');
}