1234567891011121314151617181920212223242526272829 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Shipping\Model\Carrier;
- /**
- * Interface \Magento\Shipping\Model\Carrier\CarrierInterface
- *
- */
- interface CarrierInterface
- {
- /**
- * Check if carrier has shipping tracking option available
- *
- * @return boolean
- * @api
- */
- public function isTrackingAvailable();
- /**
- * Get allowed shipping methods
- *
- * @return array
- * @api
- */
- public function getAllowedMethods();
- }
|