Guest User

Untitled

a guest
Jan 23rd, 2019
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. use App\Model;
  2.  
  3. public function beautifulMethod()
  4. {
  5. $model = new Model(1, 2, 3);
  6. $model->doSomeDBStuff();
  7. }
  8.  
  9. public function awesomeMethod()
  10. {
  11. $model = new Model(23, 45, 71);
  12. $model->doSomeElseDBStuff();
  13. }
Add Comment
Please, Sign In to add comment