This class seems to be duplicated in your project.
Duplicated code is one of the most pungent code smells. If you need to duplicate
the same code in three or more different places, we strongly encourage you to
look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.
Loading history...
6
{
7
use ServiceSummaryTrait;
8
9
/** @deprecated */
10
public $EstimatedArrival;
11
12
/**
13
* @var EstimatedArrival
14
*/
15
protected $estimatedArrival;
16
17
/**
18
* @param \stdClass|null $response
19
*/
20
4
public function __construct(\stdClass $response = null)
The property Ups\Entity\ServiceSummary::$EstimatedArrival has been deprecated.
This property has been deprecated. The supplier of the class has supplied an explanatory message.
The explanatory message should give you some clue as to whether and when the property will be
removed from the class and what other property to use instead.
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.