OrdersDetails
Table of Contents
-
$orders
: Orders|null
-
$price
: int|null
-
$products
: Products|null
-
$quantity
: int|null
-
getOrders()
: Orders|null
-
getPrice()
: int|null
-
getProducts()
: Products|null
-
getQuantity()
: int|null
-
setOrders()
: self
-
setPrice()
: self
-
setProducts()
: self
-
setQuantity()
: self
$orders
private
Orders|null
$orders
= null
$price
private
int|null
$price
= null
$products
private
Products|null
$products
= null
$quantity
private
int|null
$quantity
= null
getOrders()
public
getOrders() : Orders|null
Return values
Orders|null
—
getPrice()
public
getPrice() : int|null
Return values
int|null
—
getProducts()
public
getProducts() : Products|null
Return values
Products|null
—
getQuantity()
public
getQuantity() : int|null
Return values
int|null
—
setOrders()
public
setOrders(Orders|null $orders) : self
Parameters
-
$orders
: Orders|null
-
Return values
self
—
setPrice()
public
setPrice(int $price) : self
Parameters
-
$price
: int
-
Return values
self
—
setProducts()
public
setProducts(Products|null $products) : self
Parameters
-
$products
: Products|null
-
Return values
self
—
setQuantity()
public
setQuantity(int $quantity) : self
Parameters
-
$quantity
: int
-
Return values
self
—