readAmf3Vector() защищенный Метод

Reads a vector array of objects from the AMF stream. This works for all vector arrays: vector-object, vector-int vector-uint and vector-double. The Vector is cast to a PHP array. Please note that because of the way php handles integers, uints have to be cast as floats. See {@link http://php.net/manual/en/language.types.integer.php}
protected readAmf3Vector ( $type ) : array
Результат array The objects in the vector in a native PHP array.
 /**
  * read vector
  * @return Amfphp_Core_Amf_Types_Vector
  */
 public function readAmf3Vector($type)
 {
     return parent::readAmf3Vector($type);
 }