Skip to content

Commit

Permalink
fix psalm annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
arti0090 committed Dec 1, 2020
1 parent c87076e commit 31229b1
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions src/Sylius/Bundle/ApiBundle/Command/Cart/PickupCart.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,16 @@

use Sylius\Bundle\ApiBundle\Command\ChannelCodeAwareInterface;

/**
* @experimental
* @psalm-immutable
*/
/** @experimental */
class PickupCart implements ChannelCodeAwareInterface
{
/** @var string|null */
/** @var string|null
* @psalm-immutable
*/
public $tokenValue;

/** @var string|null */
public $channelCode;
private $channelCode;

public function __construct(?string $tokenValue = null)
{
Expand Down

0 comments on commit 31229b1

Please sign in to comment.