GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Test Failed
Push — master ( e5b8eb...47d764 )
by Igor
01:54 queued 12s
created
src/Route4Me/Vehicles/VehiclesResponseV4.php 2 patches
Indentation   +78 added lines, -78 removed lines patch added patch discarded remove patch
@@ -13,82 +13,82 @@
 block discarded – undo
13 13
  */
14 14
 class VehiclesResponseV4 extends \Route4Me\Common
15 15
 {
16
-    /** @var int $current_page
17
-     * Current page number in the driver reviews collection.
18
-     */
19
-    public $current_page;
20
-
21
-    /** @var VehicleV4[] $data
22
-     * An array of the vehicles data.
23
-     */
24
-    public $data = [];
25
-
26
-    /** @var string $first_page_url
27
-     * URL to the first page.
28
-     */
29
-    public $first_page_url;
30
-
31
-    /** @var int $from
32
-     * From which vehicle is starting the page.
33
-     */
34
-    public $from;
35
-
36
-    /** @var int $last_page
37
-     * Last page number in the vehicles collection.
38
-     */
39
-    public $last_page;
40
-
41
-    /** @var string $last_page_url
42
-     * URL to the last page.
43
-     */
44
-    public $last_page_url;
45
-
46
-    /** @var string $next_page_url
47
-     * URL to the next page.
48
-     */
49
-    public $next_page_url;
50
-
51
-    /** @var string $path
52
-     * Path to the API endpoint.
53
-     */
54
-    public $path;
55
-
56
-    /** @var int $per_page
57
-     * Vehicles number per page.
58
-     */
59
-    public $per_page;
60
-
61
-    /** @var string $prev_page_url
62
-     * URL to the previous page.
63
-     */
64
-    public $prev_page_url;
65
-
66
-    /** @var int $to
67
-     * To which vehicle is ending the page.
68
-     */
69
-    public $to;
70
-
71
-    /** @var int $total
72
-     * Total number of the vehicles.
73
-     */
74
-    public $total;
75
-
76
-    public function __construct()
77
-    {
78
-        Route4Me::setBaseUrl(Endpoint::WH_BASE_URL);
79
-    }
80
-
81
-    public static function fromArray(array $params)
82
-    {
83
-        $vehiclesResponse = new self();
84
-
85
-        foreach ($params as $key => $value) {
86
-            if (is_null(Common::getValue($params, $key))) continue;
87
-            if (property_exists($vehiclesResponse, $key)) {
88
-                $vehiclesResponse->$key = $value;
89
-            }
90
-        }
91
-
92
-        return $vehiclesResponse;
93
-    }
16
+	/** @var int $current_page
17
+	 * Current page number in the driver reviews collection.
18
+	 */
19
+	public $current_page;
20
+
21
+	/** @var VehicleV4[] $data
22
+	 * An array of the vehicles data.
23
+	 */
24
+	public $data = [];
25
+
26
+	/** @var string $first_page_url
27
+	 * URL to the first page.
28
+	 */
29
+	public $first_page_url;
30
+
31
+	/** @var int $from
32
+	 * From which vehicle is starting the page.
33
+	 */
34
+	public $from;
35
+
36
+	/** @var int $last_page
37
+	 * Last page number in the vehicles collection.
38
+	 */
39
+	public $last_page;
40
+
41
+	/** @var string $last_page_url
42
+	 * URL to the last page.
43
+	 */
44
+	public $last_page_url;
45
+
46
+	/** @var string $next_page_url
47
+	 * URL to the next page.
48
+	 */
49
+	public $next_page_url;
50
+
51
+	/** @var string $path
52
+	 * Path to the API endpoint.
53
+	 */
54
+	public $path;
55
+
56
+	/** @var int $per_page
57
+	 * Vehicles number per page.
58
+	 */
59
+	public $per_page;
60
+
61
+	/** @var string $prev_page_url
62
+	 * URL to the previous page.
63
+	 */
64
+	public $prev_page_url;
65
+
66
+	/** @var int $to
67
+	 * To which vehicle is ending the page.
68
+	 */
69
+	public $to;
70
+
71
+	/** @var int $total
72
+	 * Total number of the vehicles.
73
+	 */
74
+	public $total;
75
+
76
+	public function __construct()
77
+	{
78
+		Route4Me::setBaseUrl(Endpoint::WH_BASE_URL);
79
+	}
80
+
81
+	public static function fromArray(array $params)
82
+	{
83
+		$vehiclesResponse = new self();
84
+
85
+		foreach ($params as $key => $value) {
86
+			if (is_null(Common::getValue($params, $key))) continue;
87
+			if (property_exists($vehiclesResponse, $key)) {
88
+				$vehiclesResponse->$key = $value;
89
+			}
90
+		}
91
+
92
+		return $vehiclesResponse;
93
+	}
94 94
 }
95 95
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,9 @@
 block discarded – undo
83 83
         $vehiclesResponse = new self();
84 84
 
85 85
         foreach ($params as $key => $value) {
86
-            if (is_null(Common::getValue($params, $key))) continue;
86
+            if (is_null(Common::getValue($params, $key))) {
87
+            	continue;
88
+            }
87 89
             if (property_exists($vehiclesResponse, $key)) {
88 90
                 $vehiclesResponse->$key = $value;
89 91
             }
Please login to merge, or discard this patch.
src/Route4Me/Vehicles/VehicleCreateResponseV4.php 2 patches
Indentation   +134 added lines, -134 removed lines patch added patch discarded remove patch
@@ -11,138 +11,138 @@
 block discarded – undo
11 11
  */
12 12
 class VehicleCreateResponseV4 extends \Route4Me\Common
13 13
 {
14
-    /** @var string $vehicle_alias
15
-     * Vehicle alias
16
-     */
17
-    public $vehicle_alias;
18
-
19
-    /** @var string $vehicle_vin
20
-     * Vehicle VIN (vehicle identification number)
21
-     */
22
-    public $vehicle_vin;
23
-
24
-    /** @var int $vehicle_reg_country_id
25
-     * The ID of a country the vehicle was registered.
26
-     */
27
-    public $vehicle_reg_country_id;
28
-
29
-    /** @var string $vehicle_license_plate
30
-     * A license plate of the vehicle.
31
-     */
32
-    public $vehicle_license_plate;
33
-
34
-    /** @var string $vehicle_type_id
35
-     * Vehicle type ID.
36
-     * Available values:
37
-     * 'sedan', 'suv', 'pickup_truck', 'van', '18wheeler', 'cabin', 'hatchback',
38
-     * 'motorcyle', 'waste_disposal', 'tree_cutting', 'bigrig', 'cement_mixer',
39
-     * 'livestock_carrier', 'dairy','tractor_trailer'
40
-     */
41
-    public $vehicle_type_id;
42
-
43
-    /** @var int $vehicle_model_year
44
-     * A year of the vehicle model.
45
-     */
46
-    public $vehicle_model_year;
47
-
48
-    /** @var string $vehicle_model
49
-     * A model of the vehicle.
50
-     */
51
-    public $vehicle_model;
52
-
53
-    /** @var int $vehicle_year_acquired
54
-     * A year, the vehicle was acquired.
55
-     */
56
-    public $vehicle_year_acquired;
57
-
58
-    /** @var string $purchased_new
59
-     * If true, the vehicle was purchased new.
60
-     */
61
-    public $purchased_new;
62
-
63
-    /** @var string $license_start_date
64
-     * Start date of the license (e.g. '2020-12-20').
65
-     */
66
-    public $license_start_date;
67
-
68
-    /** @var string $license_end_date
69
-     * End date of the license (e.g. '2020-12-20').
70
-     */
71
-    public $license_end_date;
72
-
73
-    /** @var string $fuel_type
74
-     * A type of the fuel.
75
-     * Available values:
76
-     * 'unleaded 87', 'unleaded 89', 'unleaded 91', 'unleaded 93', 'diesel', 'electric', 'hybrid'
77
-     */
78
-    public $fuel_type;
79
-
80
-    /** @var double $fuel_consumption_city
81
-     * Fuel consumption in the city area.
82
-     */
83
-    public $fuel_consumption_city;
84
-
85
-    /** @var double $fuel_consumption_highway
86
-     * Fuel consumption in the highway area.
87
-     */
88
-    public $fuel_consumption_highway;
89
-
90
-    /** @var int $member_id
91
-     * Member unique ID
92
-     */
93
-    public $member_id;
94
-
95
-    /** @var string $vehicle_id
96
-     * Vehicle unique 32-chars ID
97
-     */
98
-    public $vehicle_id;
99
-
100
-    /** @var string $timestamp_added
101
-     * When the vehicle was added.
102
-     */
103
-    public $timestamp_added;
104
-
105
-    /** @var string $fuel_consumption_city_unit
106
-     * Fuel consumption unit in the city area (e.g. 'mi/l').
107
-     */
108
-    public $fuel_consumption_city_unit;
109
-
110
-    /** @var string $fuel_consumption_highway_unit
111
-     * Fuel consumption unit in the highway area (e.g. 'mi/l').
112
-     */
113
-    public $fuel_consumption_highway_unit;
114
-
115
-    /** @var double $mpg_city
116
-     * Miles per gallon in the city area.
117
-     */
118
-    public $mpg_city;
119
-
120
-    /** @var double $mpg_highway
121
-     * Miles per gallon in the highway area.
122
-     */
123
-    public $mpg_highway;
124
-
125
-    /** @var string $fuel_consumption_city_uf_value
126
-     * Fuel consumption UF (utility factor) value in the city area.
127
-     */
128
-    public $fuel_consumption_city_uf_value;
129
-
130
-    /** @var string $fuel_consumption_highway_uf_value
131
-     * Fuel consumption UF (utility factor) value in the highway area.
132
-     */
133
-    public $fuel_consumption_highway_uf_value;
134
-
135
-    public static function fromArray(array $params)
136
-    {
137
-        $vehicleCreateResponse = new self();
138
-
139
-        foreach ($params as $key => $value) {
140
-            if (is_null(Common::getValue($params, $key))) continue;
141
-            if (property_exists($vehicleCreateResponse, $key)) {
142
-                $vehicleCreateResponse->$key = $value;
143
-            }
144
-        }
145
-
146
-        return $vehicleCreateResponse;
147
-    }
14
+	/** @var string $vehicle_alias
15
+	 * Vehicle alias
16
+	 */
17
+	public $vehicle_alias;
18
+
19
+	/** @var string $vehicle_vin
20
+	 * Vehicle VIN (vehicle identification number)
21
+	 */
22
+	public $vehicle_vin;
23
+
24
+	/** @var int $vehicle_reg_country_id
25
+	 * The ID of a country the vehicle was registered.
26
+	 */
27
+	public $vehicle_reg_country_id;
28
+
29
+	/** @var string $vehicle_license_plate
30
+	 * A license plate of the vehicle.
31
+	 */
32
+	public $vehicle_license_plate;
33
+
34
+	/** @var string $vehicle_type_id
35
+	 * Vehicle type ID.
36
+	 * Available values:
37
+	 * 'sedan', 'suv', 'pickup_truck', 'van', '18wheeler', 'cabin', 'hatchback',
38
+	 * 'motorcyle', 'waste_disposal', 'tree_cutting', 'bigrig', 'cement_mixer',
39
+	 * 'livestock_carrier', 'dairy','tractor_trailer'
40
+	 */
41
+	public $vehicle_type_id;
42
+
43
+	/** @var int $vehicle_model_year
44
+	 * A year of the vehicle model.
45
+	 */
46
+	public $vehicle_model_year;
47
+
48
+	/** @var string $vehicle_model
49
+	 * A model of the vehicle.
50
+	 */
51
+	public $vehicle_model;
52
+
53
+	/** @var int $vehicle_year_acquired
54
+	 * A year, the vehicle was acquired.
55
+	 */
56
+	public $vehicle_year_acquired;
57
+
58
+	/** @var string $purchased_new
59
+	 * If true, the vehicle was purchased new.
60
+	 */
61
+	public $purchased_new;
62
+
63
+	/** @var string $license_start_date
64
+	 * Start date of the license (e.g. '2020-12-20').
65
+	 */
66
+	public $license_start_date;
67
+
68
+	/** @var string $license_end_date
69
+	 * End date of the license (e.g. '2020-12-20').
70
+	 */
71
+	public $license_end_date;
72
+
73
+	/** @var string $fuel_type
74
+	 * A type of the fuel.
75
+	 * Available values:
76
+	 * 'unleaded 87', 'unleaded 89', 'unleaded 91', 'unleaded 93', 'diesel', 'electric', 'hybrid'
77
+	 */
78
+	public $fuel_type;
79
+
80
+	/** @var double $fuel_consumption_city
81
+	 * Fuel consumption in the city area.
82
+	 */
83
+	public $fuel_consumption_city;
84
+
85
+	/** @var double $fuel_consumption_highway
86
+	 * Fuel consumption in the highway area.
87
+	 */
88
+	public $fuel_consumption_highway;
89
+
90
+	/** @var int $member_id
91
+	 * Member unique ID
92
+	 */
93
+	public $member_id;
94
+
95
+	/** @var string $vehicle_id
96
+	 * Vehicle unique 32-chars ID
97
+	 */
98
+	public $vehicle_id;
99
+
100
+	/** @var string $timestamp_added
101
+	 * When the vehicle was added.
102
+	 */
103
+	public $timestamp_added;
104
+
105
+	/** @var string $fuel_consumption_city_unit
106
+	 * Fuel consumption unit in the city area (e.g. 'mi/l').
107
+	 */
108
+	public $fuel_consumption_city_unit;
109
+
110
+	/** @var string $fuel_consumption_highway_unit
111
+	 * Fuel consumption unit in the highway area (e.g. 'mi/l').
112
+	 */
113
+	public $fuel_consumption_highway_unit;
114
+
115
+	/** @var double $mpg_city
116
+	 * Miles per gallon in the city area.
117
+	 */
118
+	public $mpg_city;
119
+
120
+	/** @var double $mpg_highway
121
+	 * Miles per gallon in the highway area.
122
+	 */
123
+	public $mpg_highway;
124
+
125
+	/** @var string $fuel_consumption_city_uf_value
126
+	 * Fuel consumption UF (utility factor) value in the city area.
127
+	 */
128
+	public $fuel_consumption_city_uf_value;
129
+
130
+	/** @var string $fuel_consumption_highway_uf_value
131
+	 * Fuel consumption UF (utility factor) value in the highway area.
132
+	 */
133
+	public $fuel_consumption_highway_uf_value;
134
+
135
+	public static function fromArray(array $params)
136
+	{
137
+		$vehicleCreateResponse = new self();
138
+
139
+		foreach ($params as $key => $value) {
140
+			if (is_null(Common::getValue($params, $key))) continue;
141
+			if (property_exists($vehicleCreateResponse, $key)) {
142
+				$vehicleCreateResponse->$key = $value;
143
+			}
144
+		}
145
+
146
+		return $vehicleCreateResponse;
147
+	}
148 148
 }
149 149
\ No newline at end of file
Please login to merge, or discard this patch.
Braces   +3 added lines, -1 removed lines patch added patch discarded remove patch
@@ -137,7 +137,9 @@
 block discarded – undo
137 137
         $vehicleCreateResponse = new self();
138 138
 
139 139
         foreach ($params as $key => $value) {
140
-            if (is_null(Common::getValue($params, $key))) continue;
140
+            if (is_null(Common::getValue($params, $key))) {
141
+            	continue;
142
+            }
141 143
             if (property_exists($vehicleCreateResponse, $key)) {
142 144
                 $vehicleCreateResponse->$key = $value;
143 145
             }
Please login to merge, or discard this patch.
src/Route4Me/Vehicles/Vehicle.php 2 patches
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 
111 111
         $vehicles = $this->getVehicles($params);
112 112
 
113
-        if (is_null($vehicles) || !isset($vehicles['data']) || sizeof($vehicles['data']) < 1) {
113
+        if (is_null($vehicles) || !isset($vehicles['data']) || sizeof($vehicles['data'])<1) {
114 114
             return null;
115 115
         }
116 116
 
@@ -122,7 +122,7 @@  discard block
 block discarded – undo
122 122
     public function getVehicleByID($vehicleID)
123 123
     {
124 124
         $response = Route4Me::makeRequst([
125
-            'url' => Endpoint::VEHICLE_V4 . '/' . $vehicleID,
125
+            'url' => Endpoint::VEHICLE_V4.'/'.$vehicleID,
126 126
             'method' => 'GET',
127 127
         ]);
128 128
 
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
         $allBodyFields = Route4Me::getObjectProperties(new self(), ['vehicle_id']);
137 137
 
138 138
         $response = Route4Me::makeRequst([
139
-            'url' => Endpoint::VEHICLE_V4 . '/' . $vehicleID,
139
+            'url' => Endpoint::VEHICLE_V4.'/'.$vehicleID,
140 140
             'method' => 'PUT',
141 141
             'body' => Route4Me::generateRequestParameters($allBodyFields, $params),
142 142
             'HTTPHEADER' => 'Content-Type: application/json',
@@ -167,7 +167,7 @@  discard block
 block discarded – undo
167 167
         $vehicleID = isset($params->vehicle_id) ? $params->vehicle_id : null;
168 168
 
169 169
         $response = Route4Me::makeRequst([
170
-            'url' => Endpoint::VEHICLE_V4 . '/' . $vehicleID,
170
+            'url' => Endpoint::VEHICLE_V4.'/'.$vehicleID,
171 171
             'method' => 'DELETE',
172 172
             'HTTPHEADER' => 'Content-Type: application/json',
173 173
         ]);
Please login to merge, or discard this patch.
Indentation   +188 added lines, -188 removed lines patch added patch discarded remove patch
@@ -16,192 +16,192 @@
 block discarded – undo
16 16
  */
17 17
 class Vehicle extends \Route4Me\Common
18 18
 {
19
-    public $vehicle_id;
20
-    public $member_id;
21
-    public $is_deleted;
22
-    public $vehicle_name;
23
-    public $vehicle_alias;
24
-    public $vehicle_vin;
25
-    //public $created_time;
26
-    public $vehicle_reg_state_id;
27
-    public $vehicle_reg_country_id;
28
-    public $vehicle_license_plate;
29
-    public $vehicle_type_id;
30
-    public $timestamp_added;
31
-    public $vehicle_make;
32
-    public $vehicle_model_year;
33
-    public $vehicle_model;
34
-    public $vehicle_year_acquired;
35
-    public $vehicle_cost_new;
36
-    public $purchased_new;
37
-    public $license_start_date;
38
-    public $license_end_date;
39
-    public $vehicle_axle_count;
40
-    public $mpg_city;
41
-    public $mpg_highway;
42
-    public $fuel_type;
43
-    public $height_inches;
44
-    public $weight_lb;
45
-    public $route4me_telematics_internal_api_key;
46
-    public $is_operational;
47
-    public $external_telematics_vehicle_id;
48
-    public $r4m_telematics_gateway_connection_id;
49
-    public $r4m_telematics_gateway_vehicle_id;
50
-    public $has_trailer;
51
-    public $heightInInches;
52
-    public $lengthInInches;
53
-    public $widthInInches;
54
-    public $maxWeightPerAxleGroupInPounds;
55
-    public $numAxles;
56
-    public $weightInPounds;
57
-    public $HazmatType;
58
-    public $LowEmissionZonePref;
59
-    public $Use53FootTrailerRouting;
60
-    public $UseNationalNetwork;
61
-    public $UseTruckRestrictions;
62
-    public $AvoidFerries;
63
-    public $DividedHighwayAvoidPreference;
64
-    public $FreewayAvoidPreference;
65
-    public $InternationalBordersOpen;
66
-    public $TollRoadUsage;
67
-    public $hwy_only;
68
-    public $long_combination_vehicle;
69
-    public $avoid_highways;
70
-    public $side_street_adherence;
71
-    public $truck_config;
72
-    public $height_metric;
73
-    public $length_metric;
74
-    public $width_metric;
75
-    public $weight_metric;
76
-    public $max_weight_per_axle_group_metric;
77
-    public $timestamp_removed;
78
-
79
-    public function __construct()
80
-    {
81
-        Route4Me::setBaseUrl(Endpoint::WH_BASE_URL);
82
-    }
83
-
84
-    public static function fromArray(array $params)
85
-    {
86
-        $vehicle = new self();
87
-
88
-        foreach ($params as $key => $value) {
89
-            if (is_null(Common::getValue($params, $key))) {
90
-                continue;
91
-            }
92
-            if (property_exists($vehicle, $key)) {
93
-                $vehicle->$key = $value;
94
-            }
95
-        }
96
-
97
-        return $vehicle;
98
-    }
99
-
100
-    /**
101
-     * @deprecated 1.2.6
102
-     * @see \Route4Me\V5\Vehicles\DataTypes\Vehicle::getVehiclesPaginatedList()
103
-     */
104
-    public static function getVehicles($params)
105
-    {
106
-        $allQueryFields = ['with_pagination', 'page', 'perPage'];
107
-
108
-        $response = Route4Me::makeRequst([
109
-            'url' => Endpoint::VEHICLE_V4,
110
-            'method' => 'GET',
111
-            'query' => Route4Me::generateRequestParameters($allQueryFields, $params),
112
-        ]);
113
-
114
-        return $response;
115
-    }
116
-
117
-    public function getRandomVehicleId($page, $perPage)
118
-    {
119
-        $params = [
120
-            'page' => isset($page) ? $page : 1,
121
-            'perPage' => isset($perPage) ? $perPage : 10,
122
-            'with_pagination' => true,
123
-        ];
124
-
125
-        $vehicles = $this->getVehicles($params);
126
-
127
-        if (is_null($vehicles) || !isset($vehicles['data']) || sizeof($vehicles['data']) < 1) {
128
-            return null;
129
-        }
130
-
131
-        $randomIndex = rand(0, sizeof($vehicles['data']) - 1);
132
-
133
-        return $vehicles['data'][$randomIndex]['vehicle_id'];
134
-    }
135
-
136
-    /**
137
-     * @deprecated 1.2.6
138
-     * @see \Route4Me\V5\Vehicles\DataTypes\Vehicle::getVehicleById()
139
-     */
140
-    public function getVehicleByID($vehicleID)
141
-    {
142
-        $response = Route4Me::makeRequst([
143
-            'url' => Endpoint::VEHICLE_V4 . '/' . $vehicleID,
144
-            'method' => 'GET',
145
-        ]);
146
-
147
-        return $response;
148
-    }
149
-
150
-    /**
151
-     * @deprecated 1.2.6
152
-     * @see \Route4Me\V5\Vehicles\DataTypes\Vehicle::updateVehicle()
153
-     */
154
-    public function updateVehicle($params)
155
-    {
156
-        $vehicleID = isset($params->vehicle_id) ? $params->vehicle_id : null;
157
-
158
-        $allBodyFields = Route4Me::getObjectProperties(new self(), ['vehicle_id']);
159
-
160
-        $response = Route4Me::makeRequst([
161
-            'url' => Endpoint::VEHICLE_V4 . '/' . $vehicleID,
162
-            'method' => 'PUT',
163
-            'body' => Route4Me::generateRequestParameters($allBodyFields, $params),
164
-            'HTTPHEADER' => 'Content-Type: application/json',
165
-        ]);
166
-
167
-        return $response;
168
-    }
169
-
170
-    /**
171
-     * @deprecated 1.2.6
172
-     * @see \Route4Me\V5\Vehicles\DataTypes\Vehicle::createVehicle()
173
-     */
174
-    public function createVehicle($params)
175
-    {
176
-        $excludeFields = ['vehicle_id', 'is_deleted', 'created_time', 'timestamp_added', 'timestamp_removed'];
177
-        $allBodyFields = Route4Me::getObjectProperties(new self(), $excludeFields);
178
-
179
-        Route4Me::setBaseUrl(Endpoint::BASE_URL);
180
-
181
-        $response = Route4Me::makeRequst([
182
-            'url' => Endpoint::VEHICLE_V4_API,
183
-            'method' => 'POST',
184
-            'body' => Route4Me::generateRequestParameters($allBodyFields, $params),
185
-            'HTTPHEADER' => 'Content-Type: application/json',
186
-        ]);
187
-
188
-        return $response;
189
-    }
190
-
191
-    /**
192
-     * @deprecated 1.2.6
193
-     * @see \Route4Me\V5\Vehicles\DataTypes\Vehicle::removeVehicle()
194
-     */
195
-    public function removeVehicle($params)
196
-    {
197
-        $vehicleID = isset($params->vehicle_id) ? $params->vehicle_id : null;
198
-
199
-        $response = Route4Me::makeRequst([
200
-            'url' => Endpoint::VEHICLE_V4 . '/' . $vehicleID,
201
-            'method' => 'DELETE',
202
-            'HTTPHEADER' => 'Content-Type: application/json',
203
-        ]);
204
-
205
-        return $response;
206
-    }
19
+	public $vehicle_id;
20
+	public $member_id;
21
+	public $is_deleted;
22
+	public $vehicle_name;
23
+	public $vehicle_alias;
24
+	public $vehicle_vin;
25
+	//public $created_time;
26
+	public $vehicle_reg_state_id;
27
+	public $vehicle_reg_country_id;
28
+	public $vehicle_license_plate;
29
+	public $vehicle_type_id;
30
+	public $timestamp_added;
31
+	public $vehicle_make;
32
+	public $vehicle_model_year;
33
+	public $vehicle_model;
34
+	public $vehicle_year_acquired;
35
+	public $vehicle_cost_new;
36
+	public $purchased_new;
37
+	public $license_start_date;
38
+	public $license_end_date;
39
+	public $vehicle_axle_count;
40
+	public $mpg_city;
41
+	public $mpg_highway;
42
+	public $fuel_type;
43
+	public $height_inches;
44
+	public $weight_lb;
45
+	public $route4me_telematics_internal_api_key;
46
+	public $is_operational;
47
+	public $external_telematics_vehicle_id;
48
+	public $r4m_telematics_gateway_connection_id;
49
+	public $r4m_telematics_gateway_vehicle_id;
50
+	public $has_trailer;
51
+	public $heightInInches;
52
+	public $lengthInInches;
53
+	public $widthInInches;
54
+	public $maxWeightPerAxleGroupInPounds;
55
+	public $numAxles;
56
+	public $weightInPounds;
57
+	public $HazmatType;
58
+	public $LowEmissionZonePref;
59
+	public $Use53FootTrailerRouting;
60
+	public $UseNationalNetwork;
61
+	public $UseTruckRestrictions;
62
+	public $AvoidFerries;
63
+	public $DividedHighwayAvoidPreference;
64
+	public $FreewayAvoidPreference;
65
+	public $InternationalBordersOpen;
66
+	public $TollRoadUsage;
67
+	public $hwy_only;
68
+	public $long_combination_vehicle;
69
+	public $avoid_highways;
70
+	public $side_street_adherence;
71
+	public $truck_config;
72
+	public $height_metric;
73
+	public $length_metric;
74
+	public $width_metric;
75
+	public $weight_metric;
76
+	public $max_weight_per_axle_group_metric;
77
+	public $timestamp_removed;
78
+
79
+	public function __construct()
80
+	{
81
+		Route4Me::setBaseUrl(Endpoint::WH_BASE_URL);
82
+	}
83
+
84
+	public static function fromArray(array $params)
85
+	{
86
+		$vehicle = new self();
87
+
88
+		foreach ($params as $key => $value) {
89
+			if (is_null(Common::getValue($params, $key))) {
90
+				continue;
91
+			}
92
+			if (property_exists($vehicle, $key)) {
93
+				$vehicle->$key = $value;
94
+			}
95
+		}
96
+
97
+		return $vehicle;
98
+	}
99
+
100
+	/**
101
+	 * @deprecated 1.2.6
102
+	 * @see \Route4Me\V5\Vehicles\DataTypes\Vehicle::getVehiclesPaginatedList()
103
+	 */
104
+	public static function getVehicles($params)
105
+	{
106
+		$allQueryFields = ['with_pagination', 'page', 'perPage'];
107
+
108
+		$response = Route4Me::makeRequst([
109
+			'url' => Endpoint::VEHICLE_V4,
110
+			'method' => 'GET',
111
+			'query' => Route4Me::generateRequestParameters($allQueryFields, $params),
112
+		]);
113
+
114
+		return $response;
115
+	}
116
+
117
+	public function getRandomVehicleId($page, $perPage)
118
+	{
119
+		$params = [
120
+			'page' => isset($page) ? $page : 1,
121
+			'perPage' => isset($perPage) ? $perPage : 10,
122
+			'with_pagination' => true,
123
+		];
124
+
125
+		$vehicles = $this->getVehicles($params);
126
+
127
+		if (is_null($vehicles) || !isset($vehicles['data']) || sizeof($vehicles['data']) < 1) {
128
+			return null;
129
+		}
130
+
131
+		$randomIndex = rand(0, sizeof($vehicles['data']) - 1);
132
+
133
+		return $vehicles['data'][$randomIndex]['vehicle_id'];
134
+	}
135
+
136
+	/**
137
+	 * @deprecated 1.2.6
138
+	 * @see \Route4Me\V5\Vehicles\DataTypes\Vehicle::getVehicleById()
139
+	 */
140
+	public function getVehicleByID($vehicleID)
141
+	{
142
+		$response = Route4Me::makeRequst([
143
+			'url' => Endpoint::VEHICLE_V4 . '/' . $vehicleID,
144
+			'method' => 'GET',
145
+		]);
146
+
147
+		return $response;
148
+	}
149
+
150
+	/**
151
+	 * @deprecated 1.2.6
152
+	 * @see \Route4Me\V5\Vehicles\DataTypes\Vehicle::updateVehicle()
153
+	 */
154
+	public function updateVehicle($params)
155
+	{
156
+		$vehicleID = isset($params->vehicle_id) ? $params->vehicle_id : null;
157
+
158
+		$allBodyFields = Route4Me::getObjectProperties(new self(), ['vehicle_id']);
159
+
160
+		$response = Route4Me::makeRequst([
161
+			'url' => Endpoint::VEHICLE_V4 . '/' . $vehicleID,
162
+			'method' => 'PUT',
163
+			'body' => Route4Me::generateRequestParameters($allBodyFields, $params),
164
+			'HTTPHEADER' => 'Content-Type: application/json',
165
+		]);
166
+
167
+		return $response;
168
+	}
169
+
170
+	/**
171
+	 * @deprecated 1.2.6
172
+	 * @see \Route4Me\V5\Vehicles\DataTypes\Vehicle::createVehicle()
173
+	 */
174
+	public function createVehicle($params)
175
+	{
176
+		$excludeFields = ['vehicle_id', 'is_deleted', 'created_time', 'timestamp_added', 'timestamp_removed'];
177
+		$allBodyFields = Route4Me::getObjectProperties(new self(), $excludeFields);
178
+
179
+		Route4Me::setBaseUrl(Endpoint::BASE_URL);
180
+
181
+		$response = Route4Me::makeRequst([
182
+			'url' => Endpoint::VEHICLE_V4_API,
183
+			'method' => 'POST',
184
+			'body' => Route4Me::generateRequestParameters($allBodyFields, $params),
185
+			'HTTPHEADER' => 'Content-Type: application/json',
186
+		]);
187
+
188
+		return $response;
189
+	}
190
+
191
+	/**
192
+	 * @deprecated 1.2.6
193
+	 * @see \Route4Me\V5\Vehicles\DataTypes\Vehicle::removeVehicle()
194
+	 */
195
+	public function removeVehicle($params)
196
+	{
197
+		$vehicleID = isset($params->vehicle_id) ? $params->vehicle_id : null;
198
+
199
+		$response = Route4Me::makeRequst([
200
+			'url' => Endpoint::VEHICLE_V4 . '/' . $vehicleID,
201
+			'method' => 'DELETE',
202
+			'HTTPHEADER' => 'Content-Type: application/json',
203
+		]);
204
+
205
+		return $response;
206
+	}
207 207
 }
Please login to merge, or discard this patch.
src/Route4Me/Tracking/TrackingHistory.php 1 patch
Indentation   +45 added lines, -45 removed lines patch added patch discarded remove patch
@@ -12,58 +12,58 @@
 block discarded – undo
12 12
  */
13 13
 class TrackingHistory extends Common
14 14
 {
15
-    /**
16
-     * Speed at the time of the location transaction event.
17
-     * @var type string
18
-     */
19
-    public $s;
15
+	/**
16
+	 * Speed at the time of the location transaction event.
17
+	 * @var type string
18
+	 */
19
+	public $s;
20 20
 
21
-    /**
22
-     * Speed unit ('mph', 'kph')
23
-     * @var type string
24
-     */
25
-    public $su;
21
+	/**
22
+	 * Speed unit ('mph', 'kph')
23
+	 * @var type string
24
+	 */
25
+	public $su;
26 26
 
27
-    /**
28
-     *  Latitude at the time of the location transaction event.
29
-     * @var type string
30
-     */
31
-    public $lt;
27
+	/**
28
+	 *  Latitude at the time of the location transaction event.
29
+	 * @var type string
30
+	 */
31
+	public $lt;
32 32
 
33
-    /**
34
-     * Member ID
35
-     * @var type integer
36
-     */
37
-    public $m;
33
+	/**
34
+	 * Member ID
35
+	 * @var type integer
36
+	 */
37
+	public $m;
38 38
 
39
-    /**
40
-     * Longitude at the time of the location transaction event.
41
-     * @var type string
42
-     */
43
-    public $lg;
39
+	/**
40
+	 * Longitude at the time of the location transaction event.
41
+	 * @var type string
42
+	 */
43
+	public $lg;
44 44
 
45
-    /**
46
-     * Direction/heading at the time of the location transaction event.
47
-     * @var type integer
48
-     */
49
-    public $d;
45
+	/**
46
+	 * Direction/heading at the time of the location transaction event.
47
+	 * @var type integer
48
+	 */
49
+	public $d;
50 50
 
51
-    /**
52
-     * The original timestamp in unix timestamp format at the moment location transaction event.
53
-     * @var type string
54
-     */
55
-    public $ts;
51
+	/**
52
+	 * The original timestamp in unix timestamp format at the moment location transaction event.
53
+	 * @var type string
54
+	 */
55
+	public $ts;
56 56
 
57
-    /**
58
-     * The original timestamp in a human readable timestamp format at the moment location transaction event.
59
-     * @var type string
60
-     */
61
-    public $ts_friendly;
57
+	/**
58
+	 * The original timestamp in a human readable timestamp format at the moment location transaction event.
59
+	 * @var type string
60
+	 */
61
+	public $ts_friendly;
62 62
 
63
-    /**
64
-     * GPS package src (e.g. 'R4M').
65
-     * @var type string
66
-     */
67
-    public $src;
63
+	/**
64
+	 * GPS package src (e.g. 'R4M').
65
+	 * @var type string
66
+	 */
67
+	public $src;
68 68
 
69 69
 }
70 70
\ No newline at end of file
Please login to merge, or discard this patch.
src/Route4Me/Tracking/MemberData.php 1 patch
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -6,43 +6,43 @@
 block discarded – undo
6 6
 
7 7
 class MemberData extends \Route4Me\Common
8 8
 {
9
-    /** @var int $account_type_id */
10
-    public $account_type_id;
9
+	/** @var int $account_type_id */
10
+	public $account_type_id;
11 11
 
12
-    /** @var string $member_email */
13
-    public $member_email;
12
+	/** @var string $member_email */
13
+	public $member_email;
14 14
 
15
-    /** @var string $member_first_name */
16
-    public $member_first_name;
15
+	/** @var string $member_first_name */
16
+	public $member_first_name;
17 17
 
18
-    /** @var int $member_id */
19
-    public $member_id;
18
+	/** @var int $member_id */
19
+	public $member_id;
20 20
 
21
-    /** @var string $member_last_name */
22
-    public $member_last_name;
21
+	/** @var string $member_last_name */
22
+	public $member_last_name;
23 23
 
24
-    /** @var string $member_type */
25
-    public $member_type;
24
+	/** @var string $member_type */
25
+	public $member_type;
26 26
 
27
-    /** @var string $phone_number */
28
-    public $phone_number;
27
+	/** @var string $phone_number */
28
+	public $phone_number;
29 29
 
30
-    /** @var boolean $readonly_user */
31
-    public $readonly_user;
30
+	/** @var boolean $readonly_user */
31
+	public $readonly_user;
32 32
 
33
-    /** @var boolean $show_superuser_addresses */
34
-    public $show_superuser_addresses;
33
+	/** @var boolean $show_superuser_addresses */
34
+	public $show_superuser_addresses;
35 35
 
36
-    public static function fromArray(array $params)
37
-    {
38
-        $memberData = new self();
36
+	public static function fromArray(array $params)
37
+	{
38
+		$memberData = new self();
39 39
 
40
-        foreach ($params as $key => $value) {
41
-            if (property_exists($memberData, $key)) {
42
-                $memberData->{$key} = $value;
43
-            }
44
-        }
40
+		foreach ($params as $key => $value) {
41
+			if (property_exists($memberData, $key)) {
42
+				$memberData->{$key} = $value;
43
+			}
44
+		}
45 45
 
46
-        return $memberData;
47
-    }
46
+		return $memberData;
47
+	}
48 48
 }
49 49
\ No newline at end of file
Please login to merge, or discard this patch.
src/Route4Me/Tracking/SetGpsResponse.php 1 patch
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -4,26 +4,26 @@
 block discarded – undo
4 4
 
5 5
 class SetGpsResponse extends \Route4Me\Common
6 6
 {
7
-    /** @var boolean  $status
8
-     * Status of the GPS setting request process.
9
-     */
10
-    public $status;
7
+	/** @var boolean  $status
8
+	 * Status of the GPS setting request process.
9
+	 */
10
+	public $status;
11 11
 
12
-    /** @var string $tx_id
13
-     * Unique ID of the GPS points group.
14
-     */
15
-    public $tx_id;
12
+	/** @var string $tx_id
13
+	 * Unique ID of the GPS points group.
14
+	 */
15
+	public $tx_id;
16 16
 
17
-    public static function fromArray(array $params)
18
-    {
19
-        $gpsPosition = new self();
17
+	public static function fromArray(array $params)
18
+	{
19
+		$gpsPosition = new self();
20 20
 
21
-        foreach ($params as $key => $value) {
22
-            if (property_exists($gpsPosition, $key)) {
23
-                $gpsPosition->{$key} = $value;
24
-            }
25
-        }
21
+		foreach ($params as $key => $value) {
22
+			if (property_exists($gpsPosition, $key)) {
23
+				$gpsPosition->{$key} = $value;
24
+			}
25
+		}
26 26
 
27
-        return $gpsPosition;
28
-    }
27
+		return $gpsPosition;
28
+	}
29 29
 }
30 30
\ No newline at end of file
Please login to merge, or discard this patch.
src/Route4Me/Tracking/TrackSetParams.php 1 patch
Indentation   +104 added lines, -104 removed lines patch added patch discarded remove patch
@@ -10,108 +10,108 @@
 block discarded – undo
10 10
 
11 11
 class TrackSetParams extends \Route4Me\Common
12 12
 {
13
-    public $format;
14
-    public $member_id;
15
-    public $route_id;
16
-    public $tx_id;
17
-    public $vehicle_id;
18
-    public $course;
19
-    public $speed;
20
-    public $lat;
21
-    public $lng;
22
-    public $altitude;
23
-    public $device_type;
24
-    public $device_guid;
25
-    public $device_timestamp;
26
-    public $app_version;
27
-
28
-    public function __construct()
29
-    {
30
-        Route4Me\Route4Me::setBaseUrl(Endpoint::BASE_URL);
31
-    }
32
-
33
-    public static function fromArray(array $params)
34
-    {
35
-        $param = new self();
36
-
37
-        if (!isset($params['format'])) {
38
-            throw new BadParam('format must be provided.');
39
-        }
40
-
41
-        $types = [
42
-            Format::JSON,
43
-            Format::SERIALIZED,
44
-            Format::CSV,
45
-            Format::XML,
46
-        ];
47
-        if (!in_array($params['format'], $types)) {
48
-            throw new BadParam('format is invalid.');
49
-        }
50
-
51
-        if (!isset($params['route_id'])) {
52
-            throw new BadParam('route_id must be provided.');
53
-        }
54
-
55
-        if (!isset($params['member_id'])) {
56
-            throw new BadParam('member_id must be provided.');
57
-        }
58
-
59
-        if (!isset($params['course'])) {
60
-            throw new BadParam('course must be provided.');
61
-        }
62
-
63
-        if (!isset($params['speed'])) {
64
-            throw new BadParam('speed must be provided.');
65
-        }
66
-
67
-        if (!isset($params['lat'])) {
68
-            throw new BadParam('lat must be provided.');
69
-        }
70
-
71
-        if (!isset($params['lng'])) {
72
-            throw new BadParam('lng must be provided.');
73
-        }
74
-
75
-        if (!isset($params['device_type'])) {
76
-            throw new BadParam('device_type must be provided.');
77
-        }
78
-
79
-        $deviceTypes = [
80
-            DeviceType::IPHONE,
81
-            DeviceType::IPAD,
82
-            DeviceType::ANDROID_PHONE,
83
-            DeviceType::ANDROID_TABLET,
84
-        ];
85
-        if (!in_array($params['device_type'], $deviceTypes)) {
86
-            throw new BadParam('device_type is invalid.');
87
-        }
88
-
89
-        if (!isset($params['device_guid'])) {
90
-            throw new BadParam('device_guid must be provided.');
91
-        }
92
-
93
-        if (isset($params['device_timestamp'])) {
94
-            $template = '/[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}/i';
95
-            if (!preg_match($template, $params['device_timestamp'])) {
96
-                throw new BadParam('device_timestamp is invalid.');
97
-            }
98
-        }
99
-
100
-        $param->format = self::getValue($params, 'format');
101
-        $param->route_id = self::getValue($params, 'route_id');
102
-        $param->member_id = self::getValue($params, 'member_id');
103
-        $param->course = self::getValue($params, 'course');
104
-        $param->speed = self::getValue($params, 'speed');
105
-        $param->lat = self::getValue($params, 'lat');
106
-        $param->lng = self::getValue($params, 'lng');
107
-        $param->device_type = self::getValue($params, 'device_type');
108
-        $param->device_guid = self::getValue($params, 'device_guid');
109
-        $param->device_timestamp = self::getValue($params, 'device_timestamp');
110
-        $param->vehicle_id = self::getValue($params, 'vehicle_id');
111
-        $param->altitude = self::getValue($params, 'altitude');
112
-        $param->app_version = self::getValue($params, 'app_version');
113
-        $param->tx_id = self::getValue($params, 'tx_id');
114
-
115
-        return $param;
116
-    }
13
+	public $format;
14
+	public $member_id;
15
+	public $route_id;
16
+	public $tx_id;
17
+	public $vehicle_id;
18
+	public $course;
19
+	public $speed;
20
+	public $lat;
21
+	public $lng;
22
+	public $altitude;
23
+	public $device_type;
24
+	public $device_guid;
25
+	public $device_timestamp;
26
+	public $app_version;
27
+
28
+	public function __construct()
29
+	{
30
+		Route4Me\Route4Me::setBaseUrl(Endpoint::BASE_URL);
31
+	}
32
+
33
+	public static function fromArray(array $params)
34
+	{
35
+		$param = new self();
36
+
37
+		if (!isset($params['format'])) {
38
+			throw new BadParam('format must be provided.');
39
+		}
40
+
41
+		$types = [
42
+			Format::JSON,
43
+			Format::SERIALIZED,
44
+			Format::CSV,
45
+			Format::XML,
46
+		];
47
+		if (!in_array($params['format'], $types)) {
48
+			throw new BadParam('format is invalid.');
49
+		}
50
+
51
+		if (!isset($params['route_id'])) {
52
+			throw new BadParam('route_id must be provided.');
53
+		}
54
+
55
+		if (!isset($params['member_id'])) {
56
+			throw new BadParam('member_id must be provided.');
57
+		}
58
+
59
+		if (!isset($params['course'])) {
60
+			throw new BadParam('course must be provided.');
61
+		}
62
+
63
+		if (!isset($params['speed'])) {
64
+			throw new BadParam('speed must be provided.');
65
+		}
66
+
67
+		if (!isset($params['lat'])) {
68
+			throw new BadParam('lat must be provided.');
69
+		}
70
+
71
+		if (!isset($params['lng'])) {
72
+			throw new BadParam('lng must be provided.');
73
+		}
74
+
75
+		if (!isset($params['device_type'])) {
76
+			throw new BadParam('device_type must be provided.');
77
+		}
78
+
79
+		$deviceTypes = [
80
+			DeviceType::IPHONE,
81
+			DeviceType::IPAD,
82
+			DeviceType::ANDROID_PHONE,
83
+			DeviceType::ANDROID_TABLET,
84
+		];
85
+		if (!in_array($params['device_type'], $deviceTypes)) {
86
+			throw new BadParam('device_type is invalid.');
87
+		}
88
+
89
+		if (!isset($params['device_guid'])) {
90
+			throw new BadParam('device_guid must be provided.');
91
+		}
92
+
93
+		if (isset($params['device_timestamp'])) {
94
+			$template = '/[0-9]{4}-[0-9]{2}-[0-9]{2} [0-9]{2}:[0-9]{2}:[0-9]{2}/i';
95
+			if (!preg_match($template, $params['device_timestamp'])) {
96
+				throw new BadParam('device_timestamp is invalid.');
97
+			}
98
+		}
99
+
100
+		$param->format = self::getValue($params, 'format');
101
+		$param->route_id = self::getValue($params, 'route_id');
102
+		$param->member_id = self::getValue($params, 'member_id');
103
+		$param->course = self::getValue($params, 'course');
104
+		$param->speed = self::getValue($params, 'speed');
105
+		$param->lat = self::getValue($params, 'lat');
106
+		$param->lng = self::getValue($params, 'lng');
107
+		$param->device_type = self::getValue($params, 'device_type');
108
+		$param->device_guid = self::getValue($params, 'device_guid');
109
+		$param->device_timestamp = self::getValue($params, 'device_timestamp');
110
+		$param->vehicle_id = self::getValue($params, 'vehicle_id');
111
+		$param->altitude = self::getValue($params, 'altitude');
112
+		$param->app_version = self::getValue($params, 'app_version');
113
+		$param->tx_id = self::getValue($params, 'tx_id');
114
+
115
+		return $param;
116
+	}
117 117
 }
Please login to merge, or discard this patch.
src/Route4Me/Tracking/UserLocation.php 2 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -9,25 +9,25 @@
 block discarded – undo
9 9
  */
10 10
 class UserLocation extends \Route4Me\Common
11 11
 {
12
-    /** @var MemberData[] $member_data */
13
-    public $member_data=[];
12
+	/** @var MemberData[] $member_data */
13
+	public $member_data=[];
14 14
 
15
-    /** @var UserTracking[] $tracking */
16
-    public $tracking = [];
15
+	/** @var UserTracking[] $tracking */
16
+	public $tracking = [];
17 17
 
18
-    /** @var boolean $from_cache*/
19
-    public $from_cache;
18
+	/** @var boolean $from_cache*/
19
+	public $from_cache;
20 20
 
21
-    public static function fromArray(array $params)
22
-    {
23
-        $userLocation = new self();
21
+	public static function fromArray(array $params)
22
+	{
23
+		$userLocation = new self();
24 24
 
25
-        foreach ($params as $key => $value) {
26
-            if (property_exists($userLocation, $key)) {
27
-                $userLocation->{$key} = $value;
28
-            }
29
-        }
25
+		foreach ($params as $key => $value) {
26
+			if (property_exists($userLocation, $key)) {
27
+				$userLocation->{$key} = $value;
28
+			}
29
+		}
30 30
 
31
-        return $userLocation;
32
-    }
31
+		return $userLocation;
32
+	}
33 33
 }
34 34
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
 class UserLocation extends \Route4Me\Common
11 11
 {
12 12
     /** @var MemberData[] $member_data */
13
-    public $member_data=[];
13
+    public $member_data = [];
14 14
 
15 15
     /** @var UserTracking[] $tracking */
16 16
     public $tracking = [];
Please login to merge, or discard this patch.
src/Route4Me/Tracking/FindAssetResponse.php 1 patch
Indentation   +147 added lines, -147 removed lines patch added patch discarded remove patch
@@ -8,154 +8,154 @@
 block discarded – undo
8 8
  */
9 9
 class FindAssetResponse extends \Route4Me\Common
10 10
 {
11
-    /**
12
-    * Tracking number
13
-    * @var type string
14
-    */
15
-    public $tracking_number;
16
-    
17
-    /**
18
-    * A link to a large logo
19
-    * @var type string
20
-    */
21
-    public $large_logo_uri;
22
-    
23
-    /**
24
-    * A link to a large logo (2x)
25
-    * @var type string
26
-    */
27
-    public $large_logo_uri_2x;
28
-    
29
-    /**
30
-    * A link to a mobile logo
31
-    * @var type string
32
-    */
33
-    public $mobile_logo_uri;
34
-    
35
-    /**
36
-    * A link to a mobile logo (2x)
37
-    * @var type string
38
-    */
39
-    public $mobile_logo_uri_2x;
40
-    
41
-    /**
42
-    * The asset color on a map
43
-    * @var type string
44
-    */
45
-    public $map_color;
46
-    
47
-    /**
48
-    * An alignment of a large logo
49
-    * @var type string
50
-    */
51
-    public $large_logo_alignment;
52
-    
53
-    /**
54
-    * An alignment of a mobile logo
55
-    * @var type string
56
-    */
57
-    public $mobile_logo_alignment;
58
-    
59
-    /**
60
-    * Show map zoom controls
61
-    * @var type Boolean
62
-    */
63
-    public $show_map_zoom_controls;
64
-    
65
-    /**
66
-    * Customer service phone
67
-    * @var type string
68
-    */
69
-    public $customer_service_phone;
70
-    
71
-    /**
72
-    * If true, Covid19 warning hidden 
73
-    * @var type 
74
-    */
75
-    public $hide_covid19_warning;
76
-    
77
-    /**
78
-    * Driver phone number
79
-    * @var type string
80
-    */
81
-    public $driver_phone;
82
-    
83
-    /**
84
-    * If true, the route started
85
-    * @var type Boolean
86
-    */
87
-    public $route_started;
88
-    
89
-    /**
90
-    * Driver name
91
-    * @var type string
92
-    */
93
-    public $driver_name;
94
-    
95
-    /**
96
-    * A link to a driver picture file
97
-    * @var type string
98
-    */
99
-    public $driver_picture;
100
-    
101
-    /**
102
-    * A sub-headline of a tracking page
103
-    * @var type string
104
-    */
105
-    public $tracking_page_subheadline;
106
-    
107
-    /**
108
-    * A first destination address
109
-    * @var type string
110
-    */
111
-    public $destination_address_1;
112
-    
113
-    /**
114
-    * A second destination address
115
-    * @var type string
116
-    */
117
-    public $destination_address_2;
118
-    
119
-    /**
120
-    * True if the asset was delivered
121
-    * @var type Boolean
122
-    */
123
-    public $delivered;
124
-    
125
-    /**
126
-     * Asset status history
127
-     * @var type array
128
-     */
129
-    public $status_history = [];
130
-    
131
-    /**
132
-     * An array of the asset locations
133
-     * @var type array
134
-     */
135
-    public $locations = [];
136
-    
137
-    /**
138
-     * Custom data
139
-     * @var type array
140
-     */
141
-    public $custom_data;
142
-    
143
-    /**
144
-     * An array of the asset arrival times 
145
-     * @var type array
146
-     */
147
-    public $arrival = [];
11
+	/**
12
+	 * Tracking number
13
+	 * @var type string
14
+	 */
15
+	public $tracking_number;
16
+    
17
+	/**
18
+	 * A link to a large logo
19
+	 * @var type string
20
+	 */
21
+	public $large_logo_uri;
22
+    
23
+	/**
24
+	 * A link to a large logo (2x)
25
+	 * @var type string
26
+	 */
27
+	public $large_logo_uri_2x;
28
+    
29
+	/**
30
+	 * A link to a mobile logo
31
+	 * @var type string
32
+	 */
33
+	public $mobile_logo_uri;
34
+    
35
+	/**
36
+	 * A link to a mobile logo (2x)
37
+	 * @var type string
38
+	 */
39
+	public $mobile_logo_uri_2x;
40
+    
41
+	/**
42
+	 * The asset color on a map
43
+	 * @var type string
44
+	 */
45
+	public $map_color;
46
+    
47
+	/**
48
+	 * An alignment of a large logo
49
+	 * @var type string
50
+	 */
51
+	public $large_logo_alignment;
52
+    
53
+	/**
54
+	 * An alignment of a mobile logo
55
+	 * @var type string
56
+	 */
57
+	public $mobile_logo_alignment;
58
+    
59
+	/**
60
+	 * Show map zoom controls
61
+	 * @var type Boolean
62
+	 */
63
+	public $show_map_zoom_controls;
64
+    
65
+	/**
66
+	 * Customer service phone
67
+	 * @var type string
68
+	 */
69
+	public $customer_service_phone;
70
+    
71
+	/**
72
+	 * If true, Covid19 warning hidden 
73
+	 * @var type 
74
+	 */
75
+	public $hide_covid19_warning;
76
+    
77
+	/**
78
+	 * Driver phone number
79
+	 * @var type string
80
+	 */
81
+	public $driver_phone;
82
+    
83
+	/**
84
+	 * If true, the route started
85
+	 * @var type Boolean
86
+	 */
87
+	public $route_started;
88
+    
89
+	/**
90
+	 * Driver name
91
+	 * @var type string
92
+	 */
93
+	public $driver_name;
94
+    
95
+	/**
96
+	 * A link to a driver picture file
97
+	 * @var type string
98
+	 */
99
+	public $driver_picture;
100
+    
101
+	/**
102
+	 * A sub-headline of a tracking page
103
+	 * @var type string
104
+	 */
105
+	public $tracking_page_subheadline;
106
+    
107
+	/**
108
+	 * A first destination address
109
+	 * @var type string
110
+	 */
111
+	public $destination_address_1;
112
+    
113
+	/**
114
+	 * A second destination address
115
+	 * @var type string
116
+	 */
117
+	public $destination_address_2;
118
+    
119
+	/**
120
+	 * True if the asset was delivered
121
+	 * @var type Boolean
122
+	 */
123
+	public $delivered;
124
+    
125
+	/**
126
+	 * Asset status history
127
+	 * @var type array
128
+	 */
129
+	public $status_history = [];
130
+    
131
+	/**
132
+	 * An array of the asset locations
133
+	 * @var type array
134
+	 */
135
+	public $locations = [];
136
+    
137
+	/**
138
+	 * Custom data
139
+	 * @var type array
140
+	 */
141
+	public $custom_data;
142
+    
143
+	/**
144
+	 * An array of the asset arrival times 
145
+	 * @var type array
146
+	 */
147
+	public $arrival = [];
148 148
 
149
-    public static function fromArray(array $params)
150
-    {
151
-        $findAssetResponse = new self();
149
+	public static function fromArray(array $params)
150
+	{
151
+		$findAssetResponse = new self();
152 152
 
153
-        foreach ($params as $key => $value) {
154
-            if (property_exists($findAssetResponse, $key)) {
155
-                $findAssetResponse->{$key} = $value;
156
-            }
157
-        }
153
+		foreach ($params as $key => $value) {
154
+			if (property_exists($findAssetResponse, $key)) {
155
+				$findAssetResponse->{$key} = $value;
156
+			}
157
+		}
158 158
 
159
-        return $findAssetResponse;
160
-    }
159
+		return $findAssetResponse;
160
+	}
161 161
 }
162 162
\ No newline at end of file
Please login to merge, or discard this patch.