當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Parameter::setParent方法代碼示例

本文整理匯總了PHP中Guzzle\Service\Description\Parameter::setParent方法的典型用法代碼示例。如果您正苦於以下問題:PHP Parameter::setParent方法的具體用法?PHP Parameter::setParent怎麽用?PHP Parameter::setParent使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Guzzle\Service\Description\Parameter的用法示例。


在下文中一共展示了Parameter::setParent方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: testCanAddArrayOfSimpleTypes

 public function testCanAddArrayOfSimpleTypes()
 {
     $request = new EntityEnclosingRequest('POST', 'http://foo.com');
     $visitor = new XmlVisitor();
     $param = new Parameter(array('type' => 'object', 'location' => 'xml', 'name' => 'Out', 'properties' => array('Nodes' => array('required' => true, 'type' => 'array', 'min' => 1, 'items' => array('type' => 'string', 'sentAs' => 'Node')))));
     $param->setParent(new Operation(array('data' => array('xmlRoot' => array('name' => 'Test', 'namespaces' => array('https://foo/'))))));
     $value = array('Nodes' => array('foo', 'baz'));
     $this->assertTrue($this->validator->validate($param, $value));
     $visitor->visit($this->command, $request, $param, $value);
     $visitor->after($this->command, $request);
     $this->assertEquals("<?xml version=\"1.0\"?>\n" . "<Test xmlns=\"https://foo/\"><Out><Nodes><Node>foo</Node><Node>baz</Node></Nodes></Out></Test>\n", (string) $request->getBody());
 }
開發者ID:alvarobfdev,項目名稱:applog,代碼行數:12,代碼來源:XmlVisitorTest.php

示例2: addParam

 /**
  * Add a parameter to the command
  *
  * @param Parameter $param Parameter to add
  *
  * @return self
  */
 public function addParam(Parameter $param)
 {
     $this->parameters[$param->getName()] = $param;
     $param->setParent($this);
     return $this;
 }
開發者ID:alvarobfdev,項目名稱:applog,代碼行數:13,代碼來源:Operation.php

示例3: testCanChangeParentOfNestedParameter

 public function testCanChangeParentOfNestedParameter()
 {
     $param1 = new Parameter(array('name' => 'parent'));
     $param2 = new Parameter(array('name' => 'child'));
     $param2->setParent($param1);
     $this->assertSame($param1, $param2->getParent());
 }
開發者ID:Frinstio,項目名稱:AlfredWorkflow.com,代碼行數:7,代碼來源:ParameterTest.php

示例4: addProperty

 /**
  * Add a property to the parameter
  *
  * @param Parameter $property Properties to set
  *
  * @return self
  */
 public function addProperty(Parameter $property)
 {
     $this->properties[$property->getName()] = $property;
     $property->setParent($this);
     $this->propertiesCache = null;
     return $this;
 }
開發者ID:Frinstio,項目名稱:AlfredWorkflow.com,代碼行數:14,代碼來源:Parameter.php

示例5: setAdditionalProperties

 /**
  * Set the additionalProperties value of the parameter
  *
  * @param bool|Parameter|null $additional Boolean to allow any, an Parameter to specify a schema, or false to disallow
  *
  * @return self
  */
 public function setAdditionalProperties($additional)
 {
     $this->additionalProperties = $additional;
     if ($additional instanceof self) {
         $additional->setParent($this);
     }
     return $this;
 }
開發者ID:KANU82,項目名稱:guzzle,代碼行數:15,代碼來源:Parameter.php


注:本文中的Guzzle\Service\Description\Parameter::setParent方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。