本文整理汇总了PHP中Sylius\Component\Core\Model\OrderInterface::getNumber方法的典型用法代码示例。如果您正苦于以下问题:PHP OrderInterface::getNumber方法的具体用法?PHP OrderInterface::getNumber怎么用?PHP OrderInterface::getNumber使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Sylius\Component\Core\Model\OrderInterface
的用法示例。
在下文中一共展示了OrderInterface::getNumber方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: anEmailWithShipmentDetailsOfOrderShouldBeSentTo
/**
* @Then /^an email with shipment's details of (this order) should be sent to "([^"]+)"$/
*/
public function anEmailWithShipmentDetailsOfOrderShouldBeSentTo(OrderInterface $order, $recipient)
{
$this->assertEmailContainsMessageTo($order->getNumber(), $recipient);
$this->assertEmailContainsMessageTo($order->getLastShipment()->getMethod()->getName(), $recipient);
$tracking = $this->sharedStorage->get('tracking_code');
$this->assertEmailContainsMessageTo($tracking, $recipient);
}
示例2: iViewTheSummaryOfTheOrder
/**
* @When I view the summary of the order :order
* @When /^I am viewing the summary of (this order)$/
*/
public function iViewTheSummaryOfTheOrder(OrderInterface $order)
{
$this->orderShowPage->open(['number' => $order->getNumber()]);
}
示例3: orderShouldNotExistInTheRegistry
/**
* @Then /^(this order) should not exist in the registry$/
*/
public function orderShouldNotExistInTheRegistry(OrderInterface $order)
{
$this->indexPage->open();
Assert::false($this->indexPage->isSingleResourceOnPage(['number' => $order->getNumber()]), sprintf('Order with number %s exists but should not.', $order->getNumber()));
}
示例4: isItPossibleToChangePaymentMethodForOrder
/**
* {@inheritDoc}
*/
public function isItPossibleToChangePaymentMethodForOrder(OrderInterface $order)
{
$row = $this->tableAccessor->getRowWithFields($this->getElement('customer_orders'), ['number' => $order->getNumber()]);
return $row->hasLink('Pay');
}
示例5:
function it_throws_an_exception_if_order_still_exists(OrderRepositoryInterface $orderRepository, OrderInterface $order)
{
$order->getNumber()->willReturn('#00000000');
$orderRepository->findOneBy(['number' => '#00000000'])->willReturn($order);
$this->shouldThrow(NotEqualException::class)->during('orderShouldNotExistInTheRegistry', [$order]);
}
示例6: thisOrderShouldHaveNumber
/**
* @Given this order should have :order number
*/
public function thisOrderShouldHaveNumber(OrderInterface $order)
{
Assert::true($this->orderIndexPage->isOrderWithNumberInTheList($order->getNumber()), sprintf('Cannot find order with number "%s" in the list.', $order->getNumber()));
}