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


PHP Assertion::nullOrScalar方法代碼示例

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


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

示例1: getContent

 public function getContent($dataSource)
 {
     if ($this->content instanceof \Closure) {
         $func = $this->content;
         return $func($dataSource);
     }
     Assertion::nullOrScalar($this->content);
     return $this->content;
 }
開發者ID:nsbucky,項目名稱:resultset-table,代碼行數:9,代碼來源:Content.php

示例2: getAction

 /**
  * @return mixed
  */
 public function getAction()
 {
     if ($this->action instanceof \Closure) {
         $func = $this->action;
         return $func($this->dataSource);
     }
     Assertion::nullOrScalar($this->action);
     return $this->action;
 }
開發者ID:nsbucky,項目名稱:resultset-table,代碼行數:12,代碼來源:PopOver.php

示例3: getUrl

 /**
  * @return string
  */
 public function getUrl($dataSource)
 {
     $url = $this->url;
     if ($url instanceof \Closure) {
         return $url($dataSource);
     }
     Assertion::nullOrScalar($url);
     return $url;
 }
開發者ID:nsbucky,項目名稱:resultset-table,代碼行數:12,代碼來源:Url.php

示例4: getLabel

 /**
  * @return string
  */
 public function getLabel($dataSource, $label)
 {
     if ($this->label instanceof \Closure) {
         $label = $this->label;
         return $label($dataSource);
     }
     if (is_scalar($this->label)) {
         return $this->label;
     }
     Assertion::nullOrScalar($label);
     return $label;
 }
開發者ID:nsbucky,項目名稱:resultset-table,代碼行數:15,代碼來源:Label.php

示例5: __construct

 public function __construct(Key $key, $lb, $li = false, $hb = null, $hi = false)
 {
     Assertion::nullOrScalar($lb);
     Assertion::boolean($li);
     Assertion::nullOrScalar($hb);
     Assertion::boolean($hi);
     $this->key = $key;
     $this->lower_bound = $lb;
     $this->lower_inclusive = $li;
     $this->higher_bound = $hb;
     $this->higher_inclusive = $hi;
 }
開發者ID:luisbrito,項目名稱:Phraseanet,代碼行數:12,代碼來源:RangeExpression.php


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