for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Sylius\ShopApiPlugin\Command;
final class PickupCart
{
/**
* @var string
*/
private $token;
private $channelCode;
* @param string $token
* @param string $channelCode
public function __construct($token, $channelCode)
$this->token = $token;
$this->channelCode = $channelCode;
}
* @return string
public function token()
return $this->token;
public function channelCode()
return $this->channelCode;