Hello, After seeing another question just started, I wanted to ask as to how something is actually achieved.
When I use some frameworks they do this like
$object->select('something')
->from('table')
->where( new Object_Evaluate('x') )
->limit(1)
->order('x');
How do you actually do this kinds of chains?