Im trying to do this with PHP
$query->select('username')->from('users')->execute();
I would rather have it like this
$query->select('username')->from('users');
is there a magic function that allows a function like execute to be started at the end of a call and return the contents?