Exemplo n.º 1
0
 public function getName() : string
 {
     return $this->parameter->getName();
 }
Exemplo n.º 2
0
 /**
  * @return array
  * Get a map from column name to row values for
  * this instance
  */
 public function toRow() : array
 {
     return ['method_fqsen' => (string) $this->method_fqsen, 'name' => (string) $this->parameter->getName(), 'type' => (string) $this->parameter->getUnionType(), 'flags' => $this->parameter->getFlags(), 'context' => base64_encode(serialize($this->parameter->getContext())), 'is_deprecated' => $this->parameter->isDeprecated()];
 }