Guest User

Untitled

a guest
Jul 21st, 2018
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. <?php
  2.  
  3. class OrderMaterial {
  4.  
  5. public $material, $quantity, $price;
  6.  
  7. public function __construct($material, $quantity, $price) {
  8. $this->material = $material;
  9. $this->quantity = $quantity;
  10. $this->price = $price;
  11. }
  12.  
  13. }
Add Comment
Please, Sign In to add comment