Skip to content

Commit

Permalink
fix annotation type declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
rommelfreddy committed Aug 31, 2021
1 parent 86cfa0d commit 9158899
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Models/ConfigInstallment.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class ConfigInstallment extends ModelEntity
protected $paymentConfig;

/**
* @var string
* @var array
* @ORM\Column(name="month_allowed", type="simple_array", nullable=false)
*/
protected $monthsAllowed;
Expand All @@ -44,7 +44,7 @@ class ConfigInstallment extends ModelEntity
protected $debitAllowed;

/**
* @var string
* @var float
* @ORM\Column(name="rate_min_normal", type="float", nullable=false)
*/
protected $rateMinNormal;
Expand All @@ -66,15 +66,15 @@ public function setPaymentConfig($paymentConfig)
}

/**
* @return string
* @return array
*/
public function getMonthsAllowed()
{
return $this->monthsAllowed;
}

/**
* @param string $monthsAllowed
* @param array $monthsAllowed
*/
public function setMonthsAllowed($monthsAllowed)
{
Expand Down Expand Up @@ -132,15 +132,15 @@ public function getPaymentFirstDay()
}

/**
* @return string
* @return float
*/
public function getRateMinNormal()
{
return $this->rateMinNormal;
}

/**
* @param string $rateMinNormal
* @param float $rateMinNormal
*/
public function setRateMinNormal($rateMinNormal)
{
Expand Down

0 comments on commit 9158899

Please sign in to comment.