コード例 #1
0
 public function toArray($filterVariableContent = false, &$filtered = array())
 {
     $returnValue = parent::toArray($filterVariableContent, $filtered);
     $returnValue['libraries'] = $this->libraries;
     $returnValue['properties'] = $this->properties;
     $returnValue['entryPoint'] = $this->entryPoint;
     $returnValue['typeIdentifier'] = $this->typeIdentifier;
     return $returnValue;
 }
コード例 #2
0
 public function toArray($filterVariableContent = false, &$filtered = array())
 {
     $returnValue = parent::toArray($filterVariableContent, $filtered);
     $returnValue['libraries'] = array();
     $returnValue['properties'] = $this->getArraySerializedPrimitiveCollection($this->getProperties(), $filterVariableContent, $filtered);
     $returnValue['entryPoint'] = $this->entryPoint;
     $returnValue['typeIdentifier'] = $this->typeIdentifier;
     return $returnValue;
 }