Exemplo n.º 1
0
 /**
  * @param Wsdl $wsdl
  * @param Schema $schema
  * @return boolean
  */
 public function isSchemaParsed(Wsdl $wsdl, Schema $schema)
 {
     $key = $wsdl->getName() . $schema->getName();
     return array_key_exists($key, $this->parsedSchemas) && is_array($this->parsedSchemas[$key]) && in_array($this->parsingTag(), $this->parsedSchemas[$key]);
 }