<?php namespace Core; class Database{ function where($where){ return $this; } function order($order){ return $this; } function limit($limit){ return $this; } }