ProductStockInventory
-
#[Entity]
-
$repositoryClass: \App\Repository\ProductStockInventoryRepository::class
Table of Contents
Properties
-
$comment
: string|null
-
$id
: int|null
-
$inventory_stock
: InventoryStock|null
-
$product
: ProductStock|null
-
$quantite_compte
: int|null
-
$quantity_stock
: int|null
Methods
-
getComment()
: string|null
-
getId()
: int|null
-
getInventoryStock()
: InventoryStock|null
-
getProduct()
: ProductStock|null
-
getQuantiteCompte()
: int|null
-
getQuantityStock()
: int|null
-
setComment()
: static
-
setInventoryStock()
: static
-
setProduct()
: static
-
setQuantiteCompte()
: static
-
setQuantityStock()
: static
private
string|null
$comment
= null
-
#[Column]
-
$length: 255
-
$nullable: true
$id
private
int|null
$id
= null
-
#[Column]
-
#[GeneratedValue]
-
#[Id]
$inventory_stock
private
InventoryStock|null
$inventory_stock
= null
-
#[ManyToOne]
-
$inversedBy: 'productStockInventories'
$product
private
ProductStock|null
$product
= null
-
#[ManyToOne]
-
$inversedBy: 'productStockInventories'
$quantite_compte
private
int|null
$quantite_compte
= null
$quantity_stock
private
int|null
$quantity_stock
= null
public
getComment() : string|null
Return values
string|null
getId()
public
getId() : int|null
getInventoryStock()
public
getInventoryStock() : InventoryStock|null
getProduct()
public
getProduct() : ProductStock|null
getQuantiteCompte()
public
getQuantiteCompte() : int|null
getQuantityStock()
public
getQuantityStock() : int|null
public
setComment(string|null $comment) : static
Parameters
-
$comment
: string|null
-
setInventoryStock()
public
setInventoryStock(InventoryStock|null $inventory_stock) : static
Parameters
-
$inventory_stock
: InventoryStock|null
-
setProduct()
public
setProduct(ProductStock|null $product) : static
Parameters
-
$product
: ProductStock|null
-
setQuantiteCompte()
public
setQuantiteCompte(int $quantite_compte) : static
Parameters
-
$quantite_compte
: int
-
setQuantityStock()
public
setQuantityStock(int $quantity_stock) : static
Parameters
-
$quantity_stock
: int
-