InventoryProduct
-
#[Entity]
-
$repositoryClass: \App\Repository\InventoryProductRepository::class
Table of Contents
Properties
-
$comment
: string|null
-
$id
: int|null
-
$inventory
: Inventory|null
-
$product
: Product|null
-
$quantite_comptee
: int|null
-
$quantity_stock
: int|null
Methods
-
getComment()
: string|null
-
getId()
: int|null
-
getInventory()
: Inventory|null
-
getProduct()
: Product|null
-
getQuantiteComptee()
: int|null
-
getQuantityStock()
: int|null
-
setComment()
: static
-
setInventory()
: static
-
setProduct()
: static
-
setQuantiteComptee()
: static
-
setQuantityStock()
: static
private
string|null
$comment
= null
-
#[Column]
-
$length: 255
-
$nullable: true
$id
private
int|null
$id
= null
-
#[Column]
-
#[GeneratedValue]
-
#[Id]
$inventory
private
Inventory|null
$inventory
= null
-
#[ManyToOne]
-
$inversedBy: 'inventoryProducts'
$product
private
Product|null
$product
= null
-
#[ManyToOne]
-
$inversedBy: 'inventoryProducts'
$quantite_comptee
private
int|null
$quantite_comptee
= null
-
#[Column]
-
$nullable: true
$quantity_stock
private
int|null
$quantity_stock
= null
public
getComment() : string|null
Return values
string|null
getId()
public
getId() : int|null
getInventory()
public
getInventory() : Inventory|null
getProduct()
public
getProduct() : Product|null
getQuantiteComptee()
public
getQuantiteComptee() : int|null
getQuantityStock()
public
getQuantityStock() : int|null
public
setComment(string|null $comment) : static
Parameters
-
$comment
: string|null
-
setInventory()
public
setInventory(Inventory|null $inventory) : static
Parameters
-
$inventory
: Inventory|null
-
setProduct()
public
setProduct(Product|null $product) : static
Parameters
-
$product
: Product|null
-
setQuantiteComptee()
public
setQuantiteComptee(int|null $quantite_comptee) : static
Parameters
-
$quantite_comptee
: int|null
-
setQuantityStock()
public
setQuantityStock(int $quantity_stock) : static
Parameters
-
$quantity_stock
: int
-