本文整理汇总了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;
}
示例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;
}
示例3: getUrl
/**
* @return string
*/
public function getUrl($dataSource)
{
$url = $this->url;
if ($url instanceof \Closure) {
return $url($dataSource);
}
Assertion::nullOrScalar($url);
return $url;
}
示例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;
}
示例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;
}