File tree Expand file tree Collapse file tree 1 file changed +13
-5
lines changed
app/code/Magento/Shipping/Model/Tracking/Result Expand file tree Collapse file tree 1 file changed +13
-5
lines changed Original file line number Diff line number Diff line change 11<?php
2+ declare (strict_types=1 );
3+
24/**
35 * Copyright © Magento, Inc. All rights reserved.
46 * See COPYING.txt for license details.
57 */
8+
69namespace Magento \Shipping \Model \Tracking \Result ;
710
811/**
9- * Fields:
10- * - carrier: carrier code
11- * - carrierTitle: carrier title
12+ * Tracking Status DataObject
13+ *
14+ * @method string|null getCarrier()
15+ * @method Status setCarrier(string $carrierCode)
16+ * @method string|null getCarrierTitle()
17+ * @method Status setCarrierTitle(string $carrierTitle)
1218 */
13- class Status extends \ Magento \ Shipping \ Model \ Tracking \ Result \ AbstractResult
19+ class Status extends AbstractResult
1420{
1521 /**
22+ * Returns all Status data
23+ *
1624 * @return array
1725 */
18- public function getAllData ()
26+ public function getAllData (): array
1927 {
2028 return $ this ->_data ;
2129 }
You can’t perform that action at this time.
0 commit comments