find()
can accept arguments, so if you want to have your resultset ordered in a particular way, you can do this:
$robots = Robots::find(['order'=>'full_name']);
If you want to change the order of a resultset that has already been retrieved, you'll have to do what @waaghals suggested.