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


PHP Assert::isBoolean方法代碼示例

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


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

示例1: setPublic

 /**
  * @return DoctypeDeclaration
  **/
 public function setPublic($isPublic)
 {
     Assert::isBoolean($isPublic);
     $this->public = $isPublic;
     $this->inline = false;
     return $this;
 }
開發者ID:justthefish,項目名稱:hesper,代碼行數:10,代碼來源:DoctypeDeclaration.php

示例2: __construct

 public function __construct(Identifiable $parent, GenericDAO $dao, $lazy = true)
 {
     Assert::isBoolean($lazy);
     $this->parent = $parent;
     $this->lazy = $lazy;
     $this->dao = $dao;
     Assert::isInstance($dao->getObjectName(), Identifiable::class);
     $this->comparator = SerializedObjectComparator::me();
 }
開發者ID:justthefish,項目名稱:hesper,代碼行數:9,代碼來源:UnifiedContainer.php

示例3: setStrict

 /**
  * @return Cdata
  **/
 public function setStrict($isStrict)
 {
     Assert::isBoolean($isStrict);
     $this->strict = $isStrict;
     return $this;
 }
開發者ID:justthefish,項目名稱:hesper,代碼行數:9,代碼來源:Cdata.php

示例4: setNoBody

 /**
  * @param $really boolean
  *
  * @return CurlHttpClient
  **/
 public function setNoBody($really)
 {
     Assert::isBoolean($really);
     $this->noBody = $really;
     return $this;
 }
開發者ID:avid,項目名稱:hesper,代碼行數:11,代碼來源:CurlHttpClient.php

示例5: setEmpty

 /**
  * @return SgmlOpenTag
  **/
 public function setEmpty($isEmpty)
 {
     Assert::isBoolean($isEmpty);
     $this->empty = $isEmpty;
     return $this;
 }
開發者ID:justthefish,項目名稱:hesper,代碼行數:9,代碼來源:SgmlOpenTag.php

示例6: setOverlapped

 public function setOverlapped($overlapped = true)
 {
     Assert::isBoolean($overlapped);
     $this->overlapped = $overlapped === true;
     return $this;
 }
開發者ID:justthefish,項目名稱:hesper,代碼行數:6,代碼來源:TimeIntervalsGenerator.php

示例7: fetchCollection

 /**
  * @return Criteria
  **/
 public function fetchCollection($path, $lazy = false, $criteria = null)
 {
     Assert::isBoolean($lazy);
     Assert::isTrue($criteria === null || $criteria instanceof Criteria);
     $this->collections[$path]['lazy'] = $lazy;
     $this->collections[$path]['criteria'] = $criteria;
     $this->collections[$path]['propertyPath'] = new PropertyPath($this->checkAndGetDao()->getObjectName(), $path);
     return $this;
 }
開發者ID:justthefish,項目名稱:hesper,代碼行數:12,代碼來源:Criteria.php

示例8: setBuildArrays

 /**
  * @return RedirectView
  **/
 public function setBuildArrays($really)
 {
     Assert::isBoolean($really);
     $this->buildArrays = $really;
     return $this;
 }
開發者ID:justthefish,項目名稱:hesper,代碼行數:9,代碼來源:RedirectView.php

示例9: lowercaseTags

 /**
  * @return HtmlTokenizer
  **/
 public function lowercaseTags($isLowercaseTags)
 {
     Assert::isBoolean($isLowercaseTags);
     $this->lowercaseTags = $isLowercaseTags;
     return $this;
 }
開發者ID:justthefish,項目名稱:hesper,代碼行數:9,代碼來源:HtmlTokenizer.php


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