Advertisement
yesamarcos

Você conhece a classe Deus?

Jun 12th, 2017
230
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.33 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Classes;
  4.  
  5. class checkout {
  6.  
  7.     public function ckeckout(){
  8.  
  9.         if($this->logado()){
  10.  
  11.             $this->tirarEstoque();
  12.             $this->cadastrarPedido();
  13.             $this->enviarEmail();
  14.         }
  15.     }
  16.  
  17.     public function tirarEstoque(){
  18.  
  19.     }
  20.  
  21.     public function cadastrarPedido(){
  22.  
  23.     }
  24.  
  25.     public function enviarEmail(){
  26.  
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement