Skip to content

Commit

Permalink
Remove useless getters and setters
Browse files Browse the repository at this point in the history
  • Loading branch information
Boyd Bueno de Mesquita committed Sep 30, 2022
1 parent 4fb00e4 commit 5f9981e
Showing 1 changed file with 0 additions and 108 deletions.
108 changes: 0 additions & 108 deletions src/Entities/AllocationCollection.php
Original file line number Diff line number Diff line change
Expand Up @@ -35,112 +35,4 @@ public function setTransactions($value)
{
return $this->setAttribute('transactions', $value);
}

/**
* @param float $value
*
* @return $this
*/
public function setUnitPrice($value)
{
return $this->setAttribute('unitPrice', $value);
}

/**
* @return int
*/
public function getQuantity()
{
return $this->getAttribute('quantity');
}

/**
* @param int $value
*
* @return $this
*/
public function setQuantity($value)
{
return $this->setAttribute('quantity', $value);
}

/**
* @return string|null
*/
public function getInvoiceItemId()
{
return $this->getAttribute('invoiceItemId');
}

/**
* @param string|null $value
*
* @return $this
*/
public function setInvoiceItemId($value)
{
return $this->setAttribute('invoiceItemId', $value);
}

/**
* @return string
*/
public function getDescription()
{
return $this->getAttribute('description');
}

/**
* @param string $value
*
* @return $this
*/
public function setDescription($value)
{
return $this->setAttribute('description', $value);
}

/**
* @return float
*/
public function getPrice()
{
return $this->getAttribute('price');
}

/**
* @return string|null
*/
public function getProductId()
{
return $this->getAttribute('productId');
}

/**
* @param string|null $value
*
* @return $this
*/
public function setProductId($value)
{
return $this->setAttribute('productId', $value);
}

/**
* @return string|null
*/
public function getPlanId()
{
return $this->getAttribute('planId');
}

/**
* @param string|null $value
*
* @return $this
*/
public function setPlanId($value)
{
return $this->setAttribute('planId', $value);
}
}

0 comments on commit 5f9981e

Please sign in to comment.