123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Paypal\Block\Express\Review;
- use Magento\Sales\Model\Order\Address;
- /**
- * Paypal Express Onepage checkout block
- *
- * @api
- * @since 100.0.2
- */
- class Details extends \Magento\Checkout\Block\Cart\Totals
- {
- /**
- * @var Address
- */
- protected $_address;
- /**
- * Return review shipping address
- *
- * @return Address
- */
- public function getAddress()
- {
- if (empty($this->_address)) {
- $this->_address = $this->getQuote()->getShippingAddress();
- }
- return $this->_address;
- }
- /**
- * Return review quote totals
- *
- * @return array
- */
- public function getTotals()
- {
- return $this->getQuote()->getTotals();
- }
- }
|