Example #1
0
 /**
  * Finds all trucks that have tweeted to us and their geo coords
  */
 public static function get_all_located_trucks()
 {
     $trucks = Trucks::get_all_trucks();
     return array_filter($trucks, array('Trucks', 'has_geo'));
 }