If you are a programmer, and utilize all the goodness of OOP, and you have not heard of fluent interfaces, then you have been missing out!
Using them further establishes object relationship, tidies up code, and gives access to a whole array of new uses.
A quick example of fluent interfacing is this
company::getInstance()->selectStore(31)->addEmployee(array('fname'=>'Joey','lname'=>'Adams'));
Get It?
Basically, to achieve fluent interfaces, just return object references in methods. This can be (more…)


