Run Your Set Calls as a Batch
This one comes from Nate. Instead of repetitive $this->set
calls, you can set all your variables in one go using the PHP compact
function.
$var1 = 'text';
$var2 = 'text';
$var3 = 'text';
$this->set( compact('var1','var2','var3') );
Thanks, Nate.