/** * When reflecting an array, returns the type of the array as string * * @return string */ public function getArrayType() { if ($this->isArray()) { return $this->_instance->getType(); } return null; }