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 1
1
<?php
2
+ declare (strict_types=1 );
3
+
2
4
/**
3
5
* Copyright © Magento, Inc. All rights reserved.
4
6
* See COPYING.txt for license details.
5
7
*/
8
+
6
9
namespace Magento \Shipping \Model \Tracking \Result ;
7
10
8
11
/**
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)
12
18
*/
13
- class Status extends \ Magento \ Shipping \ Model \ Tracking \ Result \ AbstractResult
19
+ class Status extends AbstractResult
14
20
{
15
21
/**
22
+ * Returns all Status data
23
+ *
16
24
* @return array
17
25
*/
18
- public function getAllData ()
26
+ public function getAllData (): array
19
27
{
20
28
return $ this ->_data ;
21
29
}
You can’t perform that action at this time.
0 commit comments