File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
app/code/Magento/Shipping/Model/Tracking/Result Expand file tree Collapse file tree 1 file changed +9
-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
+ * @method string getCarrier()
13
+ * @method Status setCarrier(string $carrierCode)
14
+ * @method string getCarrierTitle()
15
+ * @method Status setCarrierTitle(string $carrierTitle)
12
16
*/
13
- class Status extends \ Magento \ Shipping \ Model \ Tracking \ Result \ AbstractResult
17
+ class Status extends AbstractResult
14
18
{
15
19
/**
16
20
* @return array
17
21
*/
18
- public function getAllData ()
22
+ public function getAllData (): array
19
23
{
20
24
return $ this ->_data ;
21
25
}
You can’t perform that action at this time.
0 commit comments