@@ -11,172 +11,172 @@ |
||
11 | 11 | */ |
12 | 12 | class TelematicsVendor extends Common |
13 | 13 | { |
14 | - /** |
|
15 | - * Unique ID of a telematics vendor. |
|
16 | - * @var string |
|
17 | - */ |
|
18 | - public $id; |
|
14 | + /** |
|
15 | + * Unique ID of a telematics vendor. |
|
16 | + * @var string |
|
17 | + */ |
|
18 | + public $id; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Vendor name |
|
22 | - * @var string |
|
23 | - */ |
|
24 | - public $name; |
|
20 | + /** |
|
21 | + * Vendor name |
|
22 | + * @var string |
|
23 | + */ |
|
24 | + public $name; |
|
25 | 25 | |
26 | - /** |
|
27 | - * Vendor slug |
|
28 | - * @var string |
|
29 | - */ |
|
30 | - public $slug; |
|
26 | + /** |
|
27 | + * Vendor slug |
|
28 | + * @var string |
|
29 | + */ |
|
30 | + public $slug; |
|
31 | 31 | |
32 | - /** |
|
33 | - * Vendor description |
|
34 | - * @var string |
|
35 | - */ |
|
36 | - public $description; |
|
32 | + /** |
|
33 | + * Vendor description |
|
34 | + * @var string |
|
35 | + */ |
|
36 | + public $description; |
|
37 | 37 | |
38 | - /** |
|
39 | - * URL to the telematics vendor's logo. |
|
40 | - * @var string |
|
41 | - */ |
|
42 | - public $logo_url; |
|
38 | + /** |
|
39 | + * URL to the telematics vendor's logo. |
|
40 | + * @var string |
|
41 | + */ |
|
42 | + public $logo_url; |
|
43 | 43 | |
44 | - /** |
|
45 | - * Website URL of a telematics vendor. |
|
46 | - * @var string |
|
47 | - */ |
|
48 | - public $website_url; |
|
44 | + /** |
|
45 | + * Website URL of a telematics vendor. |
|
46 | + * @var string |
|
47 | + */ |
|
48 | + public $website_url; |
|
49 | 49 | |
50 | - /** |
|
51 | - * API URL of a telematics vendor. |
|
52 | - * @var string |
|
53 | - */ |
|
54 | - public $api_docs_url; |
|
50 | + /** |
|
51 | + * API URL of a telematics vendor. |
|
52 | + * @var string |
|
53 | + */ |
|
54 | + public $api_docs_url; |
|
55 | 55 | |
56 | - /** |
|
57 | - * If 1, the vendor is integrated in Route4Me |
|
58 | - * @var string |
|
59 | - */ |
|
60 | - public $is_integrated; |
|
56 | + /** |
|
57 | + * If 1, the vendor is integrated in Route4Me |
|
58 | + * @var string |
|
59 | + */ |
|
60 | + public $is_integrated; |
|
61 | 61 | |
62 | - /** |
|
63 | - * Vendors size. |
|
64 | - * <para>Accepted values:</para> |
|
65 | - * <para>global, regional, local. </para> |
|
66 | - * @var string |
|
67 | - */ |
|
68 | - public $size; |
|
62 | + /** |
|
63 | + * Vendors size. |
|
64 | + * <para>Accepted values:</para> |
|
65 | + * <para>global, regional, local. </para> |
|
66 | + * @var string |
|
67 | + */ |
|
68 | + public $size; |
|
69 | 69 | |
70 | - /** |
|
71 | - * An array of the countries, the vendor is operating. |
|
72 | - * @var Country[] |
|
73 | - */ |
|
74 | - public $countries = []; |
|
70 | + /** |
|
71 | + * An array of the countries, the vendor is operating. |
|
72 | + * @var Country[] |
|
73 | + */ |
|
74 | + public $countries = []; |
|
75 | 75 | |
76 | - /** |
|
77 | - * An array the vendor features |
|
78 | - * @var TelematicsVendorFeature[] |
|
79 | - */ |
|
80 | - public $features = []; |
|
76 | + /** |
|
77 | + * An array the vendor features |
|
78 | + * @var TelematicsVendorFeature[] |
|
79 | + */ |
|
80 | + public $features = []; |
|
81 | 81 | |
82 | - public static function fromArray(array $params) |
|
83 | - { |
|
84 | - $vendorsParameters = new self(); |
|
85 | - |
|
86 | - foreach ($params as $key => $value) { |
|
87 | - if (property_exists($vendorsParameters, $key)) { |
|
88 | - $vendorsParameters->{$key} = $value; |
|
89 | - } |
|
90 | - } |
|
91 | - |
|
92 | - return $vendorsParameters; |
|
93 | - } |
|
94 | - |
|
95 | - /** |
|
96 | - * Get vendor(s), search for vendors, compare vendors. |
|
97 | - * @param TelematicsVendorParameters $params |
|
98 | - * @return TelematicsVendorResponse or TelematicsVendorsResponse. |
|
99 | - */ |
|
100 | - public static function GetTelematicsVendors($params) |
|
101 | - { |
|
102 | - Route4Me::setBaseUrl(Endpoint::TELEMATICS_VENDORS); |
|
103 | - |
|
104 | - $allQueryFields = ['vendor_id', 'is_integrated', 'page', 'per_page', 'country', 'feature', 'search', 'vendors']; |
|
105 | - |
|
106 | - $vendors = Route4Me::makeRequst([ |
|
107 | - 'url' => '', |
|
108 | - 'method' => 'GET', |
|
109 | - 'query' => Route4Me::generateRequestParameters($allQueryFields, $params), |
|
110 | - ]); |
|
111 | - |
|
112 | - return $vendors; |
|
113 | - } |
|
114 | - |
|
115 | - /** |
|
116 | - * Returns a random telematics vendor (for tests). |
|
117 | - * @param $offset integer |
|
118 | - * @param $limit integer |
|
119 | - * @return Telematics vendor |
|
120 | - */ |
|
121 | - public static function GetRandomVendorID($offset, $limit) |
|
122 | - { |
|
123 | - $allVendors = self::GetTelematicsVendors(null); |
|
124 | - $vendorsNumber = sizeof($allVendors['vendors']); |
|
125 | - |
|
126 | - if ($vendorsNumber < $limit) { |
|
127 | - if ($vendorsNumber > $offset) { |
|
128 | - $limit = $vendorsNumber; |
|
129 | - } else { |
|
130 | - if ($vendorsNumber == $offset) { |
|
131 | - return $allVendors['vendors'][$offset]->{'vendor_id'}; |
|
132 | - } else { |
|
133 | - echo 'The vendors numbers are less than offset'; |
|
134 | - |
|
135 | - return null; |
|
136 | - } |
|
137 | - } |
|
138 | - } |
|
139 | - |
|
140 | - $randNumber = rand($offset, $limit); |
|
141 | - |
|
142 | - return $allVendors['vendors'][$randNumber]['id']; |
|
143 | - } |
|
144 | - |
|
145 | - /** |
|
146 | - * Register telematics member |
|
147 | - * @param TelematicsVendorParameters $params contains: |
|
148 | - * @param integer member_id : member ID |
|
149 | - * @param string api_key : API key |
|
150 | - * @return array from a TelematicsRegisterMemberResponse type object |
|
151 | - * @throws \Route4Me\Exception\ApiError |
|
152 | - */ |
|
153 | - public static function RegisterTelematicsMember($params) |
|
154 | - { |
|
155 | - Route4Me::setBaseUrl(Endpoint::BASE_URL); |
|
156 | - |
|
157 | - $allQueryFields = ['member_id', 'api_key']; |
|
158 | - |
|
159 | - $vendors = Route4Me::makeRequst([ |
|
160 | - 'url' => Endpoint::TELEMATICS_REGISTER_MEMBER, |
|
161 | - 'method' => 'GET', |
|
162 | - 'query' => Route4Me::generateRequestParameters($allQueryFields, $params), |
|
163 | - ]); |
|
164 | - |
|
165 | - return $vendors; |
|
166 | - } |
|
167 | - |
|
168 | - /** |
|
169 | - * Get a vendor by ID |
|
170 | - * @param string $vendorId |
|
171 | - * @return TelematicsVendor type object |
|
172 | - */ |
|
173 | - public static function getVendorById($vendorId) |
|
174 | - { |
|
175 | - if ($vendorId!=null) { |
|
176 | - return self::GetTelematicsVendors($vendorId); |
|
177 | - } else { |
|
178 | - return null; |
|
179 | - } |
|
180 | - } |
|
82 | + public static function fromArray(array $params) |
|
83 | + { |
|
84 | + $vendorsParameters = new self(); |
|
85 | + |
|
86 | + foreach ($params as $key => $value) { |
|
87 | + if (property_exists($vendorsParameters, $key)) { |
|
88 | + $vendorsParameters->{$key} = $value; |
|
89 | + } |
|
90 | + } |
|
91 | + |
|
92 | + return $vendorsParameters; |
|
93 | + } |
|
94 | + |
|
95 | + /** |
|
96 | + * Get vendor(s), search for vendors, compare vendors. |
|
97 | + * @param TelematicsVendorParameters $params |
|
98 | + * @return TelematicsVendorResponse or TelematicsVendorsResponse. |
|
99 | + */ |
|
100 | + public static function GetTelematicsVendors($params) |
|
101 | + { |
|
102 | + Route4Me::setBaseUrl(Endpoint::TELEMATICS_VENDORS); |
|
103 | + |
|
104 | + $allQueryFields = ['vendor_id', 'is_integrated', 'page', 'per_page', 'country', 'feature', 'search', 'vendors']; |
|
105 | + |
|
106 | + $vendors = Route4Me::makeRequst([ |
|
107 | + 'url' => '', |
|
108 | + 'method' => 'GET', |
|
109 | + 'query' => Route4Me::generateRequestParameters($allQueryFields, $params), |
|
110 | + ]); |
|
111 | + |
|
112 | + return $vendors; |
|
113 | + } |
|
114 | + |
|
115 | + /** |
|
116 | + * Returns a random telematics vendor (for tests). |
|
117 | + * @param $offset integer |
|
118 | + * @param $limit integer |
|
119 | + * @return Telematics vendor |
|
120 | + */ |
|
121 | + public static function GetRandomVendorID($offset, $limit) |
|
122 | + { |
|
123 | + $allVendors = self::GetTelematicsVendors(null); |
|
124 | + $vendorsNumber = sizeof($allVendors['vendors']); |
|
125 | + |
|
126 | + if ($vendorsNumber < $limit) { |
|
127 | + if ($vendorsNumber > $offset) { |
|
128 | + $limit = $vendorsNumber; |
|
129 | + } else { |
|
130 | + if ($vendorsNumber == $offset) { |
|
131 | + return $allVendors['vendors'][$offset]->{'vendor_id'}; |
|
132 | + } else { |
|
133 | + echo 'The vendors numbers are less than offset'; |
|
134 | + |
|
135 | + return null; |
|
136 | + } |
|
137 | + } |
|
138 | + } |
|
139 | + |
|
140 | + $randNumber = rand($offset, $limit); |
|
141 | + |
|
142 | + return $allVendors['vendors'][$randNumber]['id']; |
|
143 | + } |
|
144 | + |
|
145 | + /** |
|
146 | + * Register telematics member |
|
147 | + * @param TelematicsVendorParameters $params contains: |
|
148 | + * @param integer member_id : member ID |
|
149 | + * @param string api_key : API key |
|
150 | + * @return array from a TelematicsRegisterMemberResponse type object |
|
151 | + * @throws \Route4Me\Exception\ApiError |
|
152 | + */ |
|
153 | + public static function RegisterTelematicsMember($params) |
|
154 | + { |
|
155 | + Route4Me::setBaseUrl(Endpoint::BASE_URL); |
|
156 | + |
|
157 | + $allQueryFields = ['member_id', 'api_key']; |
|
158 | + |
|
159 | + $vendors = Route4Me::makeRequst([ |
|
160 | + 'url' => Endpoint::TELEMATICS_REGISTER_MEMBER, |
|
161 | + 'method' => 'GET', |
|
162 | + 'query' => Route4Me::generateRequestParameters($allQueryFields, $params), |
|
163 | + ]); |
|
164 | + |
|
165 | + return $vendors; |
|
166 | + } |
|
167 | + |
|
168 | + /** |
|
169 | + * Get a vendor by ID |
|
170 | + * @param string $vendorId |
|
171 | + * @return TelematicsVendor type object |
|
172 | + */ |
|
173 | + public static function getVendorById($vendorId) |
|
174 | + { |
|
175 | + if ($vendorId!=null) { |
|
176 | + return self::GetTelematicsVendors($vendorId); |
|
177 | + } else { |
|
178 | + return null; |
|
179 | + } |
|
180 | + } |
|
181 | 181 | |
182 | 182 | } |
@@ -11,72 +11,72 @@ |
||
11 | 11 | */ |
12 | 12 | class TelematicsVendors extends Common |
13 | 13 | { |
14 | - /** |
|
15 | - * Unique ID of a telematics vendor. |
|
16 | - * @var type string |
|
17 | - */ |
|
18 | - public $id; |
|
14 | + /** |
|
15 | + * Unique ID of a telematics vendor. |
|
16 | + * @var type string |
|
17 | + */ |
|
18 | + public $id; |
|
19 | 19 | |
20 | - /** |
|
21 | - * Vendor name |
|
22 | - * @var type string |
|
23 | - */ |
|
24 | - public $name; |
|
20 | + /** |
|
21 | + * Vendor name |
|
22 | + * @var type string |
|
23 | + */ |
|
24 | + public $name; |
|
25 | 25 | |
26 | - /** |
|
27 | - * Vendor slug |
|
28 | - * @var type string |
|
29 | - */ |
|
30 | - public $slug; |
|
26 | + /** |
|
27 | + * Vendor slug |
|
28 | + * @var type string |
|
29 | + */ |
|
30 | + public $slug; |
|
31 | 31 | |
32 | - /** |
|
33 | - * Vendor description |
|
34 | - * @var type string |
|
35 | - */ |
|
36 | - public $description; |
|
32 | + /** |
|
33 | + * Vendor description |
|
34 | + * @var type string |
|
35 | + */ |
|
36 | + public $description; |
|
37 | 37 | |
38 | - /** |
|
39 | - * URL to the telematics vendor's logo. |
|
40 | - * @var type string |
|
41 | - */ |
|
42 | - public $logo_url; |
|
38 | + /** |
|
39 | + * URL to the telematics vendor's logo. |
|
40 | + * @var type string |
|
41 | + */ |
|
42 | + public $logo_url; |
|
43 | 43 | |
44 | - /** |
|
45 | - * Website URL of a telematics vendor. |
|
46 | - * @var type string |
|
47 | - */ |
|
48 | - public $website_url; |
|
44 | + /** |
|
45 | + * Website URL of a telematics vendor. |
|
46 | + * @var type string |
|
47 | + */ |
|
48 | + public $website_url; |
|
49 | 49 | |
50 | - /** |
|
51 | - * API URL of a telematics vendor. |
|
52 | - * @var type string |
|
53 | - */ |
|
54 | - public $api_docs_url; |
|
50 | + /** |
|
51 | + * API URL of a telematics vendor. |
|
52 | + * @var type string |
|
53 | + */ |
|
54 | + public $api_docs_url; |
|
55 | 55 | |
56 | - /** |
|
57 | - * If 1, the vendor is integrated in Route4Me |
|
58 | - * @var type string |
|
59 | - */ |
|
60 | - public $is_integrated; |
|
56 | + /** |
|
57 | + * If 1, the vendor is integrated in Route4Me |
|
58 | + * @var type string |
|
59 | + */ |
|
60 | + public $is_integrated; |
|
61 | 61 | |
62 | - /** |
|
63 | - * Vendors size. |
|
64 | - * <para>Accepted values:</para> |
|
65 | - * <para>global, regional, local. </para> |
|
66 | - * @var type string |
|
67 | - */ |
|
68 | - public $size; |
|
62 | + /** |
|
63 | + * Vendors size. |
|
64 | + * <para>Accepted values:</para> |
|
65 | + * <para>global, regional, local. </para> |
|
66 | + * @var type string |
|
67 | + */ |
|
68 | + public $size; |
|
69 | 69 | |
70 | - public static function fromArray(array $params) |
|
71 | - { |
|
72 | - $vendorsParameters = new self(); |
|
70 | + public static function fromArray(array $params) |
|
71 | + { |
|
72 | + $vendorsParameters = new self(); |
|
73 | 73 | |
74 | - foreach ($params as $key => $value) { |
|
75 | - if (property_exists($vendorsParameters, $key)) { |
|
76 | - $vendorsParameters->{$key} = $value; |
|
77 | - } |
|
78 | - } |
|
74 | + foreach ($params as $key => $value) { |
|
75 | + if (property_exists($vendorsParameters, $key)) { |
|
76 | + $vendorsParameters->{$key} = $value; |
|
77 | + } |
|
78 | + } |
|
79 | 79 | |
80 | - return $vendorsParameters; |
|
81 | - } |
|
80 | + return $vendorsParameters; |
|
81 | + } |
|
82 | 82 | } |
@@ -9,94 +9,94 @@ |
||
9 | 9 | */ |
10 | 10 | class TelematicsVendorParameters extends Common |
11 | 11 | { |
12 | - /** |
|
13 | - * An unique ID of a telematics vendor. |
|
14 | - * @var type integer |
|
15 | - */ |
|
16 | - public $vendor_id; |
|
12 | + /** |
|
13 | + * An unique ID of a telematics vendor. |
|
14 | + * @var type integer |
|
15 | + */ |
|
16 | + public $vendor_id; |
|
17 | 17 | |
18 | - /** |
|
19 | - * If equal to 1, the vendor is integrated in the Route4Me system. |
|
20 | - * @var type integer |
|
21 | - */ |
|
22 | - public $is_integrated; |
|
18 | + /** |
|
19 | + * If equal to 1, the vendor is integrated in the Route4Me system. |
|
20 | + * @var type integer |
|
21 | + */ |
|
22 | + public $is_integrated; |
|
23 | 23 | |
24 | - /** |
|
25 | - * Current page in the vendors collection |
|
26 | - * @var type integer |
|
27 | - */ |
|
28 | - public $page; |
|
24 | + /** |
|
25 | + * Current page in the vendors collection |
|
26 | + * @var type integer |
|
27 | + */ |
|
28 | + public $page; |
|
29 | 29 | |
30 | - /** |
|
31 | - * Vendors number per page |
|
32 | - * @var type integer |
|
33 | - */ |
|
34 | - public $per_page; |
|
30 | + /** |
|
31 | + * Vendors number per page |
|
32 | + * @var type integer |
|
33 | + */ |
|
34 | + public $per_page; |
|
35 | 35 | |
36 | - /** |
|
37 | - * The vendor's country |
|
38 | - * @var type string |
|
39 | - */ |
|
40 | - public $country; |
|
36 | + /** |
|
37 | + * The vendor's country |
|
38 | + * @var type string |
|
39 | + */ |
|
40 | + public $country; |
|
41 | 41 | |
42 | - /** |
|
43 | - * Vendor's feature |
|
44 | - * @var type string |
|
45 | - */ |
|
46 | - public $feature; |
|
42 | + /** |
|
43 | + * Vendor's feature |
|
44 | + * @var type string |
|
45 | + */ |
|
46 | + public $feature; |
|
47 | 47 | |
48 | - /** |
|
49 | - * A query string |
|
50 | - * @var type string |
|
51 | - */ |
|
52 | - public $search; |
|
48 | + /** |
|
49 | + * A query string |
|
50 | + * @var type string |
|
51 | + */ |
|
52 | + public $search; |
|
53 | 53 | |
54 | - /** |
|
55 | - * Comma-delimited list of the vendors IDs |
|
56 | - * @var type string |
|
57 | - */ |
|
58 | - public $vendors; |
|
54 | + /** |
|
55 | + * Comma-delimited list of the vendors IDs |
|
56 | + * @var type string |
|
57 | + */ |
|
58 | + public $vendors; |
|
59 | 59 | |
60 | - /** |
|
61 | - * Owner of a telematicss connection. |
|
62 | - * @var type integer |
|
63 | - */ |
|
64 | - public $member_id; |
|
60 | + /** |
|
61 | + * Owner of a telematicss connection. |
|
62 | + * @var type integer |
|
63 | + */ |
|
64 | + public $member_id; |
|
65 | 65 | |
66 | - /** |
|
67 | - * Is a user real or virtual |
|
68 | - * @var type integer |
|
69 | - */ |
|
70 | - public $is_virtual; |
|
66 | + /** |
|
67 | + * Is a user real or virtual |
|
68 | + * @var type integer |
|
69 | + */ |
|
70 | + public $is_virtual; |
|
71 | 71 | |
72 | - /** |
|
73 | - * API key |
|
74 | - * @var type string |
|
75 | - */ |
|
76 | - public $api_key; |
|
72 | + /** |
|
73 | + * API key |
|
74 | + * @var type string |
|
75 | + */ |
|
76 | + public $api_key; |
|
77 | 77 | |
78 | - /** |
|
79 | - * If true, remote credentials validated. |
|
80 | - * @var type Boolean |
|
81 | - */ |
|
82 | - public $validate_remote_credentials; |
|
78 | + /** |
|
79 | + * If true, remote credentials validated. |
|
80 | + * @var type Boolean |
|
81 | + */ |
|
82 | + public $validate_remote_credentials; |
|
83 | 83 | |
84 | - /** |
|
85 | - * API token. |
|
86 | - * @var type string |
|
87 | - */ |
|
88 | - public $api_token; |
|
84 | + /** |
|
85 | + * API token. |
|
86 | + * @var type string |
|
87 | + */ |
|
88 | + public $api_token; |
|
89 | 89 | |
90 | - public static function fromArray(array $params) |
|
91 | - { |
|
92 | - $thisParams = new self(); |
|
90 | + public static function fromArray(array $params) |
|
91 | + { |
|
92 | + $thisParams = new self(); |
|
93 | 93 | |
94 | - foreach ($params as $key => $value) { |
|
95 | - if (property_exists($thisParams, $key)) { |
|
96 | - $thisParams->{$key} = $value; |
|
97 | - } |
|
98 | - } |
|
94 | + foreach ($params as $key => $value) { |
|
95 | + if (property_exists($thisParams, $key)) { |
|
96 | + $thisParams->{$key} = $value; |
|
97 | + } |
|
98 | + } |
|
99 | 99 | |
100 | - return $thisParams; |
|
101 | - } |
|
100 | + return $thisParams; |
|
101 | + } |
|
102 | 102 | } |
@@ -9,47 +9,47 @@ |
||
9 | 9 | */ |
10 | 10 | class CustomNoteType extends Common |
11 | 11 | { |
12 | - /** |
|
13 | - * Note custom entry ID |
|
14 | - * @var integer |
|
15 | - */ |
|
16 | - public $note_custom_entry_id; |
|
17 | - |
|
18 | - /** |
|
19 | - * Note ID |
|
20 | - * @var integer |
|
21 | - */ |
|
22 | - public $note_id; |
|
23 | - |
|
24 | - /** |
|
25 | - * Note custom type ID |
|
26 | - * @var integer |
|
27 | - */ |
|
28 | - public $note_custom_type_id; |
|
29 | - |
|
30 | - /** |
|
31 | - * The value of a note custom type |
|
32 | - * @var string |
|
33 | - */ |
|
34 | - public $note_custom_value; |
|
35 | - |
|
36 | - /** |
|
37 | - * Note custom type |
|
38 | - */ |
|
39 | - public $note_custom_type; |
|
40 | - |
|
41 | - public static function fromArray(array $params) |
|
42 | - { |
|
43 | - $customNoteType = new self(); |
|
44 | - |
|
45 | - foreach ($params as $key => $value) { |
|
46 | - if (property_exists($customNoteType, $key)) { |
|
47 | - $customNoteType->{$key} = $value; |
|
48 | - } else { |
|
49 | - throw new BadParam("Correct parameter must be provided. Wrong Parameter: $key"); |
|
50 | - } |
|
51 | - } |
|
52 | - |
|
53 | - return $customNoteType; |
|
54 | - } |
|
12 | + /** |
|
13 | + * Note custom entry ID |
|
14 | + * @var integer |
|
15 | + */ |
|
16 | + public $note_custom_entry_id; |
|
17 | + |
|
18 | + /** |
|
19 | + * Note ID |
|
20 | + * @var integer |
|
21 | + */ |
|
22 | + public $note_id; |
|
23 | + |
|
24 | + /** |
|
25 | + * Note custom type ID |
|
26 | + * @var integer |
|
27 | + */ |
|
28 | + public $note_custom_type_id; |
|
29 | + |
|
30 | + /** |
|
31 | + * The value of a note custom type |
|
32 | + * @var string |
|
33 | + */ |
|
34 | + public $note_custom_value; |
|
35 | + |
|
36 | + /** |
|
37 | + * Note custom type |
|
38 | + */ |
|
39 | + public $note_custom_type; |
|
40 | + |
|
41 | + public static function fromArray(array $params) |
|
42 | + { |
|
43 | + $customNoteType = new self(); |
|
44 | + |
|
45 | + foreach ($params as $key => $value) { |
|
46 | + if (property_exists($customNoteType, $key)) { |
|
47 | + $customNoteType->{$key} = $value; |
|
48 | + } else { |
|
49 | + throw new BadParam("Correct parameter must be provided. Wrong Parameter: $key"); |
|
50 | + } |
|
51 | + } |
|
52 | + |
|
53 | + return $customNoteType; |
|
54 | + } |
|
55 | 55 | } |
56 | 56 | \ No newline at end of file |
@@ -13,82 +13,82 @@ |
||
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 |
@@ -11,138 +11,138 @@ |
||
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 |
@@ -12,58 +12,58 @@ |
||
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 |
@@ -6,43 +6,43 @@ |
||
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 |
@@ -4,26 +4,26 @@ |
||
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 |