Skip to content

Commit

Permalink
Revert unwanted change
Browse files Browse the repository at this point in the history
  • Loading branch information
Roshyo committed Jul 15, 2021
1 parent f1408cc commit 253ff1b
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Entity/ShippingTableRate.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,28 +17,28 @@
class ShippingTableRate implements ResourceInterface, CodeAwareInterface
{
/** @var int|null */
protected $id;
private $id;

/**
* @var string|null
*
* @Assert\NotBlank(groups={"sylius"})
*/
protected $code;
private $code;

/**
* @var string|null
*
* @Assert\NotBlank(groups={"sylius"})
*/
protected $name;
private $name;

/**
* @var CurrencyInterface|null
*
* @Assert\NotBlank(groups={"sylius"})
*/
protected $currency;
private $currency;

/**
* @var array
Expand All @@ -48,7 +48,7 @@ class ShippingTableRate implements ResourceInterface, CodeAwareInterface
* message="webgriffe_sylius_table_rate_plugin.ui.shipping_table_rate.weightLimitToRate.not_blank"
* )
*/
protected $weightLimitToRate = [];
private $weightLimitToRate = [];

public function getId(): ?int
{
Expand Down

0 comments on commit 253ff1b

Please sign in to comment.