本文整理汇总了PHP中Provider::tryShipment方法的典型用法代码示例。如果您正苦于以下问题:PHP Provider::tryShipment方法的具体用法?PHP Provider::tryShipment怎么用?PHP Provider::tryShipment使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Provider
的用法示例。
在下文中一共展示了Provider::tryShipment方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: tryUnship
/**
* @return bool
* @throws Main\NotSupportedException
* @throws Main\SystemException
*/
public static function tryUnship()
{
// throw new Main\NotImplementedException();
// if ($result = Provider::tryShipment($this))
// {
// //$shipped = false;
// foreach ($result as $resultDat)
// {
// if ($resultDat['RESULT'] === false)
// {
// throw new Main\SystemException('wrong shipment');
// }
// }
// }
// return true;
$result = new Result();
/** @var Result $r */
$r = Provider::tryShipment($this);
if ($r->isSuccess()) {
$resultList = $r->getData();
if (!empty($resultList) && is_array($resultList)) {
/** @var Result $resultDat */
foreach ($resultList as $resultDat) {
if (!$resultDat->isSuccess()) {
$result->addErrors($resultDat->getErrors());
}
}
}
}
return $result;
}