Database.php 208 B

1234567891011121314
  1. <?php
  2. namespace Core;
  3. class Database{
  4. function where($where){
  5. return $this;
  6. }
  7. function order($order){
  8. return $this;
  9. }
  10. function limit($limit){
  11. return $this;
  12. }
  13. }