/**
  * As a substitute for the ParseObject::fetch() method.
  * This function can be chained, because of the return value.
  *
  * @param ParseObject $object
  *
  * @return ParseObject
  */
 public static function Object_fetch(ParseObject $object)
 {
     $object->fetch();
     return $object;
 }