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 Setup Failed
Push — master ( 311795...859c79 )
by Igor
06:22 queued 13s
created
examples/AddressBook_V5/GetAddressesPaginated.php 2 patches
Indentation   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -17,33 +17,33 @@
 block discarded – undo
17 17
 Route4Me::setApiKey(Constants::API_KEY);
18 18
 
19 19
 try {
20
-    $ab = new AddressBook();
21
-
22
-    /////////////////////////////////////////////
23
-    // get the first page of addresses from server
24
-    $res = $ab->getAddressesPaginated();
25
-    print_r($res);
26
-
27
-    /////////////////////////////////////////////
28
-    // get only the 5 fields of addresses from server
29
-    $options = [
30
-        'fields' => "address_id, address_1, first_name, last_name, address_city",
31
-        'page' => 2,
32
-        'per_page' => 10
33
-    ];
34
-    $res = $ab->getAddressesPaginated($options);
35
-    print_r($res);
36
-
37
-    /////////////////////////////////////////////
38
-    // get the first 5 addresses from server that match query 'France'
39
-    $options = [
40
-        'query' => 'France',
41
-        'page' => 1,
42
-        'per_page' => 10
43
-    ];
44
-    $res = $ab->getAddressesPaginated($options);
45
-    print_r($res);
20
+	$ab = new AddressBook();
21
+
22
+	/////////////////////////////////////////////
23
+	// get the first page of addresses from server
24
+	$res = $ab->getAddressesPaginated();
25
+	print_r($res);
26
+
27
+	/////////////////////////////////////////////
28
+	// get only the 5 fields of addresses from server
29
+	$options = [
30
+		'fields' => "address_id, address_1, first_name, last_name, address_city",
31
+		'page' => 2,
32
+		'per_page' => 10
33
+	];
34
+	$res = $ab->getAddressesPaginated($options);
35
+	print_r($res);
36
+
37
+	/////////////////////////////////////////////
38
+	// get the first 5 addresses from server that match query 'France'
39
+	$options = [
40
+		'query' => 'France',
41
+		'page' => 1,
42
+		'per_page' => 10
43
+	];
44
+	$res = $ab->getAddressesPaginated($options);
45
+	print_r($res);
46 46
 } catch (ApiError $e) {
47
-    echo $e->getCode() . PHP_EOL;
48
-    echo $e->getMessage() . PHP_EOL;
47
+	echo $e->getCode() . PHP_EOL;
48
+	echo $e->getMessage() . PHP_EOL;
49 49
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -44,6 +44,6 @@
 block discarded – undo
44 44
     $res = $ab->getAddressesPaginated($options);
45 45
     print_r($res);
46 46
 } catch (ApiError $e) {
47
-    echo $e->getCode() . PHP_EOL;
48
-    echo $e->getMessage() . PHP_EOL;
47
+    echo $e->getCode().PHP_EOL;
48
+    echo $e->getMessage().PHP_EOL;
49 49
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/GetAddresses.php 2 patches
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -17,37 +17,37 @@
 block discarded – undo
17 17
 Route4Me::setApiKey(Constants::API_KEY);
18 18
 
19 19
 try {
20
-    $ab = new AddressBook();
21
-
22
-    /////////////////////////////////////////////
23
-    // get the first 5 addresses
24
-    $options = [
25
-        'limit' => 5,
26
-        'offset' => 0
27
-    ];
28
-    $res = $ab->getAddresses($options);
29
-    print_r($res);
30
-
31
-    /////////////////////////////////////////////
32
-    // get only the 5 fields of address
33
-    $options = [
34
-        'fields' => "address_id, address_1, first_name, last_name, address_city",
35
-        'limit' => 5,
36
-        'offset' => 0
37
-    ];
38
-    $res = $ab->getAddresses($options);
39
-    print_r($res);
40
-
41
-    /////////////////////////////////////////////
42
-    // get the first 5 addresses from the server that match quere 'France'
43
-    $options = [
44
-        'query' => 'France',
45
-        'limit' => 10,
46
-        'offset' => 0
47
-    ];
48
-    $res = $ab->getAddresses($options);
49
-    print_r($res);
20
+	$ab = new AddressBook();
21
+
22
+	/////////////////////////////////////////////
23
+	// get the first 5 addresses
24
+	$options = [
25
+		'limit' => 5,
26
+		'offset' => 0
27
+	];
28
+	$res = $ab->getAddresses($options);
29
+	print_r($res);
30
+
31
+	/////////////////////////////////////////////
32
+	// get only the 5 fields of address
33
+	$options = [
34
+		'fields' => "address_id, address_1, first_name, last_name, address_city",
35
+		'limit' => 5,
36
+		'offset' => 0
37
+	];
38
+	$res = $ab->getAddresses($options);
39
+	print_r($res);
40
+
41
+	/////////////////////////////////////////////
42
+	// get the first 5 addresses from the server that match quere 'France'
43
+	$options = [
44
+		'query' => 'France',
45
+		'limit' => 10,
46
+		'offset' => 0
47
+	];
48
+	$res = $ab->getAddresses($options);
49
+	print_r($res);
50 50
 } catch (ApiError $e) {
51
-    echo $e->getCode() . PHP_EOL;
52
-    echo $e->getMessage() . PHP_EOL;
51
+	echo $e->getCode() . PHP_EOL;
52
+	echo $e->getMessage() . PHP_EOL;
53 53
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,6 +48,6 @@
 block discarded – undo
48 48
     $res = $ab->getAddresses($options);
49 49
     print_r($res);
50 50
 } catch (ApiError $e) {
51
-    echo $e->getCode() . PHP_EOL;
52
-    echo $e->getMessage() . PHP_EOL;
51
+    echo $e->getCode().PHP_EOL;
52
+    echo $e->getMessage().PHP_EOL;
53 53
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/DeleteAddressesByAreas.php 2 patches
Indentation   +18 added lines, -18 removed lines patch added patch discarded remove patch
@@ -17,24 +17,24 @@
 block discarded – undo
17 17
 Route4Me::setApiKey(Constants::API_KEY);
18 18
 
19 19
 try {
20
-    $ab = new AddressBook();
20
+	$ab = new AddressBook();
21 21
 
22
-    $filter = [
23
-        'query' => 'Tusha',
24
-        'selected_areas' => [[
25
-            'type' => 'circle',
26
-            'value' => [
27
-                'center' => [
28
-                    'lat' => 38.024654,
29
-                    'lng' => 77.338814
30
-                ],
31
-                'distance' => 10000
32
-            ]
33
-        ]]
34
-    ];
35
-    $res = $ab->deleteAddressesByAreas($filter);
36
-    print_r($res);
22
+	$filter = [
23
+		'query' => 'Tusha',
24
+		'selected_areas' => [[
25
+			'type' => 'circle',
26
+			'value' => [
27
+				'center' => [
28
+					'lat' => 38.024654,
29
+					'lng' => 77.338814
30
+				],
31
+				'distance' => 10000
32
+			]
33
+		]]
34
+	];
35
+	$res = $ab->deleteAddressesByAreas($filter);
36
+	print_r($res);
37 37
 } catch (ApiError $e) {
38
-    echo $e->getCode() . PHP_EOL;
39
-    echo $e->getMessage() . PHP_EOL;
38
+	echo $e->getCode() . PHP_EOL;
39
+	echo $e->getMessage() . PHP_EOL;
40 40
 }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -7,8 +7,8 @@  discard block
 block discarded – undo
7 7
 
8 8
 namespace Route4Me;
9 9
 
10
-$root = realpath(dirname(__FILE__) . '/../../');
11
-require $root . '/vendor/autoload.php';
10
+$root = realpath(dirname(__FILE__).'/../../');
11
+require $root.'/vendor/autoload.php';
12 12
 
13 13
 use Route4Me\Exception\ApiError;
14 14
 use Route4Me\V5\AddressBook\AddressBook;
@@ -35,6 +35,6 @@  discard block
 block discarded – undo
35 35
     $res = $ab->deleteAddressesByAreas($filter);
36 36
     print_r($res);
37 37
 } catch (ApiError $e) {
38
-    echo $e->getCode() . PHP_EOL;
39
-    echo $e->getMessage() . PHP_EOL;
38
+    echo $e->getCode().PHP_EOL;
39
+    echo $e->getMessage().PHP_EOL;
40 40
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/UpdateAddressesByIds.php 2 patches
Indentation   +23 added lines, -23 removed lines patch added patch discarded remove patch
@@ -18,28 +18,28 @@
 block discarded – undo
18 18
 Route4Me::setApiKey(Constants::API_KEY);
19 19
 
20 20
 try {
21
-    $ab = new AddressBook();
22
-
23
-    /////////////////////////////////////////////
24
-    // update adress's by array
25
-    $addressIds = [96121941, 96122542, 96100576];
26
-    $params = [
27
-        'service_time' => 16,
28
-        'last_name' => 'Grigoriani V',
29
-        'address_phone_number' => '+1234567890'
30
-    ];
31
-    $res = $ab->updateAddressesByIds($addressIds, $params);
32
-    print_r($res);
33
-
34
-    /////////////////////////////////////////////
35
-    // update adress's by object UpdateAddress
36
-    $addressIds = [96121941, 96122542, 96100576];
37
-    $address = new UpdateAddress(17);
38
-    $address->last_name = 'Grigoriani VI';
39
-    $address->address_phone_number = '+0987654321';
40
-    $res = $ab->updateAddressesByIds($addressIds, $address);
41
-    print_r($res);
21
+	$ab = new AddressBook();
22
+
23
+	/////////////////////////////////////////////
24
+	// update adress's by array
25
+	$addressIds = [96121941, 96122542, 96100576];
26
+	$params = [
27
+		'service_time' => 16,
28
+		'last_name' => 'Grigoriani V',
29
+		'address_phone_number' => '+1234567890'
30
+	];
31
+	$res = $ab->updateAddressesByIds($addressIds, $params);
32
+	print_r($res);
33
+
34
+	/////////////////////////////////////////////
35
+	// update adress's by object UpdateAddress
36
+	$addressIds = [96121941, 96122542, 96100576];
37
+	$address = new UpdateAddress(17);
38
+	$address->last_name = 'Grigoriani VI';
39
+	$address->address_phone_number = '+0987654321';
40
+	$res = $ab->updateAddressesByIds($addressIds, $address);
41
+	print_r($res);
42 42
 } catch (ApiError $e) {
43
-    echo $e->getCode() . PHP_EOL;
44
-    echo $e->getMessage() . PHP_EOL;
43
+	echo $e->getCode() . PHP_EOL;
44
+	echo $e->getMessage() . PHP_EOL;
45 45
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,6 +40,6 @@
 block discarded – undo
40 40
     $res = $ab->updateAddressesByIds($addressIds, $address);
41 41
     print_r($res);
42 42
 } catch (ApiError $e) {
43
-    echo $e->getCode() . PHP_EOL;
44
-    echo $e->getMessage() . PHP_EOL;
43
+    echo $e->getCode().PHP_EOL;
44
+    echo $e->getMessage().PHP_EOL;
45 45
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/ExportAddressesByAreas.php 2 patches
Indentation   +24 added lines, -24 removed lines patch added patch discarded remove patch
@@ -17,29 +17,29 @@
 block discarded – undo
17 17
 Route4Me::setApiKey(Constants::API_KEY);
18 18
 
19 19
 try {
20
-    $ab = new AddressBook();
21
-
22
-    /////////////////////////////////////////////
23
-    // update adresses in circle aria
24
-    $filter = [
25
-        'query' => "Tusha",
26
-        'bounding_box' => null,
27
-        'selected_areas' => [[
28
-            'type' => 'circle',
29
-            'value' => [
30
-                'center' => [
31
-                    'lat' => 38.024654,
32
-                    'lng' => 77.338814
33
-                ],
34
-                'distance' => 10000
35
-            ]
36
-        ]],
37
-        'filename' => 'test_export.csv'
38
-    ];
39
-
40
-    $res = $ab->exportAddressesByAreas($filter);
41
-    print_r($res);
20
+	$ab = new AddressBook();
21
+
22
+	/////////////////////////////////////////////
23
+	// update adresses in circle aria
24
+	$filter = [
25
+		'query' => "Tusha",
26
+		'bounding_box' => null,
27
+		'selected_areas' => [[
28
+			'type' => 'circle',
29
+			'value' => [
30
+				'center' => [
31
+					'lat' => 38.024654,
32
+					'lng' => 77.338814
33
+				],
34
+				'distance' => 10000
35
+			]
36
+		]],
37
+		'filename' => 'test_export.csv'
38
+	];
39
+
40
+	$res = $ab->exportAddressesByAreas($filter);
41
+	print_r($res);
42 42
 } catch (ApiError $e) {
43
-    echo $e->getCode() . PHP_EOL;
44
-    echo $e->getMessage() . PHP_EOL;
43
+	echo $e->getCode() . PHP_EOL;
44
+	echo $e->getMessage() . PHP_EOL;
45 45
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,6 +40,6 @@
 block discarded – undo
40 40
     $res = $ab->exportAddressesByAreas($filter);
41 41
     print_r($res);
42 42
 } catch (ApiError $e) {
43
-    echo $e->getCode() . PHP_EOL;
44
-    echo $e->getMessage() . PHP_EOL;
43
+    echo $e->getCode().PHP_EOL;
44
+    echo $e->getMessage().PHP_EOL;
45 45
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/GetAddressesByIds.php 2 patches
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -17,12 +17,12 @@
 block discarded – undo
17 17
 Route4Me::setApiKey(Constants::API_KEY);
18 18
 
19 19
 try {
20
-    $ab = new AddressBook();
20
+	$ab = new AddressBook();
21 21
 
22
-    $addressIds = [96121941, 96122542, 96100576];
23
-    $res = $ab->getAddressesByIds($addressIds);
24
-    print_r($res);
22
+	$addressIds = [96121941, 96122542, 96100576];
23
+	$res = $ab->getAddressesByIds($addressIds);
24
+	print_r($res);
25 25
 } catch (ApiError $e) {
26
-    echo $e->getCode() . PHP_EOL;
27
-    echo $e->getMessage() . PHP_EOL;
26
+	echo $e->getCode() . PHP_EOL;
27
+	echo $e->getMessage() . PHP_EOL;
28 28
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,6 +23,6 @@
 block discarded – undo
23 23
     $res = $ab->getAddressesByIds($addressIds);
24 24
     print_r($res);
25 25
 } catch (ApiError $e) {
26
-    echo $e->getCode() . PHP_EOL;
27
-    echo $e->getMessage() . PHP_EOL;
26
+    echo $e->getCode().PHP_EOL;
27
+    echo $e->getMessage().PHP_EOL;
28 28
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/GetAddressClustersByBodyPayload.php 2 patches
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -16,40 +16,40 @@
 block discarded – undo
16 16
 Route4Me::setApiKey(Constants::API_KEY);
17 17
 
18 18
 try {
19
-    $ab = new AddressBook();
20
-
21
-    /////////////////////////////////////////////
22
-    // get the clusters with precision 1
23
-    $options = [
24
-        'clustering' => [
25
-            'precision' => 1
26
-        ]
27
-    ];
28
-    $res = $ab->getAddressClustersByBodyPayload($options);
29
-    print_r($res);
30
-
31
-    /////////////////////////////////////////////
32
-    // get the clusters with precision 2 from selected area
33
-    $options = [
34
-        'clustering' => [
35
-            'precision' => 2
36
-        ],
37
-        'filter' => [
38
-            'selected_areas' => [[
39
-                'type' => 'circle',
40
-                'value' => [
41
-                    'center' => [
42
-                        'lat' => 52.4025,
43
-                        'lng' => 4.5601
44
-                    ],
45
-                    'distance' => 10000
46
-                ]
47
-            ]]
48
-        ]
49
-    ];
50
-    $res = $ab->getAddressClustersByBodyPayload($options);
51
-    print_r($res);
19
+	$ab = new AddressBook();
20
+
21
+	/////////////////////////////////////////////
22
+	// get the clusters with precision 1
23
+	$options = [
24
+		'clustering' => [
25
+			'precision' => 1
26
+		]
27
+	];
28
+	$res = $ab->getAddressClustersByBodyPayload($options);
29
+	print_r($res);
30
+
31
+	/////////////////////////////////////////////
32
+	// get the clusters with precision 2 from selected area
33
+	$options = [
34
+		'clustering' => [
35
+			'precision' => 2
36
+		],
37
+		'filter' => [
38
+			'selected_areas' => [[
39
+				'type' => 'circle',
40
+				'value' => [
41
+					'center' => [
42
+						'lat' => 52.4025,
43
+						'lng' => 4.5601
44
+					],
45
+					'distance' => 10000
46
+				]
47
+			]]
48
+		]
49
+	];
50
+	$res = $ab->getAddressClustersByBodyPayload($options);
51
+	print_r($res);
52 52
 } catch (ApiError $e) {
53
-    echo $e->getCode() . PHP_EOL;
54
-    echo $e->getMessage() . PHP_EOL;
53
+	echo $e->getCode() . PHP_EOL;
54
+	echo $e->getMessage() . PHP_EOL;
55 55
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,6 +50,6 @@
 block discarded – undo
50 50
     $res = $ab->getAddressClustersByBodyPayload($options);
51 51
     print_r($res);
52 52
 } catch (ApiError $e) {
53
-    echo $e->getCode() . PHP_EOL;
54
-    echo $e->getMessage() . PHP_EOL;
53
+    echo $e->getCode().PHP_EOL;
54
+    echo $e->getMessage().PHP_EOL;
55 55
 }
Please login to merge, or discard this patch.
examples/AddressBook_V5/GetAddressClusters.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -17,17 +17,17 @@
 block discarded – undo
17 17
 Route4Me::setApiKey(Constants::API_KEY);
18 18
 
19 19
 try {
20
-    $ab = new AddressBook();
20
+	$ab = new AddressBook();
21 21
 
22
-    /////////////////////////////////////////////
23
-    // get the clusters of unrouted addresses that match quere 'France'
24
-    $options = [
25
-        'display' => 'unrouted',
26
-        'query' => 'France'
27
-    ];
28
-    $res = $ab->getAddressClusters($options);
29
-    print_r($res);
22
+	/////////////////////////////////////////////
23
+	// get the clusters of unrouted addresses that match quere 'France'
24
+	$options = [
25
+		'display' => 'unrouted',
26
+		'query' => 'France'
27
+	];
28
+	$res = $ab->getAddressClusters($options);
29
+	print_r($res);
30 30
 } catch (ApiError $e) {
31
-    echo $e->getCode() . PHP_EOL;
32
-    echo $e->getMessage() . PHP_EOL;
31
+	echo $e->getCode() . PHP_EOL;
32
+	echo $e->getMessage() . PHP_EOL;
33 33
 }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -28,6 +28,6 @@
 block discarded – undo
28 28
     $res = $ab->getAddressClusters($options);
29 29
     print_r($res);
30 30
 } catch (ApiError $e) {
31
-    echo $e->getCode() . PHP_EOL;
32
-    echo $e->getMessage() . PHP_EOL;
31
+    echo $e->getCode().PHP_EOL;
32
+    echo $e->getMessage().PHP_EOL;
33 33
 }
Please login to merge, or discard this patch.
src/Route4Me/V5/Enum/Endpoint.php 2 patches
Indentation   +95 added lines, -95 removed lines patch added patch discarded remove patch
@@ -4,123 +4,123 @@
 block discarded – undo
4 4
 
5 5
 class Endpoint
6 6
 {
7
-    const API_VERSION = "5";
7
+	const API_VERSION = "5";
8 8
 
9
-    const MAIN_HOST = "https://wh.route4me.com/modules/api/v5.0";
9
+	const MAIN_HOST = "https://wh.route4me.com/modules/api/v5.0";
10 10
 
11
-    const MAIN_HOST_WEB = "https://wh.route4me.com/modules/webapi/v5.0";
11
+	const MAIN_HOST_WEB = "https://wh.route4me.com/modules/webapi/v5.0";
12 12
 
13
-    // <editor-fold defaultstate="collapsed" desc="region Routes">
13
+	// <editor-fold defaultstate="collapsed" desc="region Routes">
14 14
 
15
-    const Routes = self::MAIN_HOST . "/routes";
16
-    const RoutesDuplicate = self::MAIN_HOST . "/routes/duplicate";
17
-    const RoutesMerge = self::MAIN_HOST . "/routes/merge";
18
-    const RoutesPaginate = self::MAIN_HOST . "/routes/paginate";
19
-    const RoutesFallbackPaginate = self::MAIN_HOST . "/routes/fallback/paginate";
20
-    const RoutesFallbackDatatable = self::MAIN_HOST . "/routes/fallback/datatable";
21
-    const RoutesFallback = self::MAIN_HOST . "/routes/fallback";
22
-    const RoutesReindexCallback = self::MAIN_HOST . "/routes/reindex-callback";
23
-    const RoutesDatatable = self::MAIN_HOST . "/routes/datatable";
24
-    const RoutesDatatableConfig = self::MAIN_HOST . "/routes/datatable/config";
25
-    const RoutesDatatableConfigFallback = self::MAIN_HOST . "/routes/fallback/datatable/config";
15
+	const Routes = self::MAIN_HOST . "/routes";
16
+	const RoutesDuplicate = self::MAIN_HOST . "/routes/duplicate";
17
+	const RoutesMerge = self::MAIN_HOST . "/routes/merge";
18
+	const RoutesPaginate = self::MAIN_HOST . "/routes/paginate";
19
+	const RoutesFallbackPaginate = self::MAIN_HOST . "/routes/fallback/paginate";
20
+	const RoutesFallbackDatatable = self::MAIN_HOST . "/routes/fallback/datatable";
21
+	const RoutesFallback = self::MAIN_HOST . "/routes/fallback";
22
+	const RoutesReindexCallback = self::MAIN_HOST . "/routes/reindex-callback";
23
+	const RoutesDatatable = self::MAIN_HOST . "/routes/datatable";
24
+	const RoutesDatatableConfig = self::MAIN_HOST . "/routes/datatable/config";
25
+	const RoutesDatatableConfigFallback = self::MAIN_HOST . "/routes/fallback/datatable/config";
26 26
 
27
-    // </editor-fold>
27
+	// </editor-fold>
28 28
 
29
-    // <editor-fold defaultstate="collapsed" desc="Team Users">
29
+	// <editor-fold defaultstate="collapsed" desc="Team Users">
30 30
 
31
-    const TEAM_USERS = self::MAIN_HOST . "/team/users";
32
-    const TEAM_USERS_BULK_INSERT = self::MAIN_HOST . "/team/bulk-insert";
33
-    const DriverReview = self::MAIN_HOST . "/driver-reviews";
31
+	const TEAM_USERS = self::MAIN_HOST . "/team/users";
32
+	const TEAM_USERS_BULK_INSERT = self::MAIN_HOST . "/team/bulk-insert";
33
+	const DriverReview = self::MAIN_HOST . "/driver-reviews";
34 34
 
35
-    // </editor-fold>
35
+	// </editor-fold>
36 36
     
37
-    const ACCOUNT_PROFILE = self::MAIN_HOST . "/profile-api";
38
-
39
-    // <editor-fold defaultstate="collapsed" desc="Vehicles">
40
-
41
-    const Vehicles = self::MAIN_HOST . "/vehicles";
42
-    const VehicleTemporary = self::MAIN_HOST . "/vehicles/assign";
43
-    const VehicleExecuteOrder = self::MAIN_HOST . "/vehicles/execute";
44
-    const VehicleLocation = self::MAIN_HOST . "/vehicles/location";
45
-    const VehicleProfiles = self::MAIN_HOST . "/vehicle-profiles";
46
-    const VehicleLicense = self::MAIN_HOST . "/vehicles/license";
47
-    const VehicleSearch = self::MAIN_HOST . "/vehicles/search";
48
-
49
-    const RECURRING_ROUTES = self::MAIN_HOST . "/recurring-routes";
50
-    const RECURRING_ROUTES_SCHEDULES = self::MAIN_HOST . "/recurring-routes/schedules";
51
-    const RECURRING_ROUTES_SCHEDULES_PAGINATION = self::MAIN_HOST . "/recurring-routes/schedules/pagination";
52
-    const RECURRING_ROUTES_ROUTE_SCHEDULES = self::MAIN_HOST . "/recurring-routes/route-schedules";
53
-    const RECURRING_ROUTES_ROUTE_SCHEDULES_PAGINATION =
54
-        self::MAIN_HOST . "/recurring-routes/route-schedules/pagination";
55
-    const RECURRING_ROUTES_ROUTE_SCHEDULES_REPLACE = self::MAIN_HOST . "/recurring-routes/route-schedules/replace";
56
-    const RECURRING_ROUTES_SCHEDULED_ROUTES_IS_COPY = self::MAIN_HOST . "/recurring-routes/scheduled-routes/is-copy";
57
-    const RECURRING_ROUTES_SCHEDULED_ROUTES_GET_COPIES =
58
-        self::MAIN_HOST . "/recurring-routes/scheduled-routes/get-copies";
59
-    const RECURRING_ROUTES_MASTER_ROUTES = self::MAIN_HOST . "/recurring-routes/master-routes";
60
-
61
-    // </editor-fold>
37
+	const ACCOUNT_PROFILE = self::MAIN_HOST . "/profile-api";
38
+
39
+	// <editor-fold defaultstate="collapsed" desc="Vehicles">
40
+
41
+	const Vehicles = self::MAIN_HOST . "/vehicles";
42
+	const VehicleTemporary = self::MAIN_HOST . "/vehicles/assign";
43
+	const VehicleExecuteOrder = self::MAIN_HOST . "/vehicles/execute";
44
+	const VehicleLocation = self::MAIN_HOST . "/vehicles/location";
45
+	const VehicleProfiles = self::MAIN_HOST . "/vehicle-profiles";
46
+	const VehicleLicense = self::MAIN_HOST . "/vehicles/license";
47
+	const VehicleSearch = self::MAIN_HOST . "/vehicles/search";
48
+
49
+	const RECURRING_ROUTES = self::MAIN_HOST . "/recurring-routes";
50
+	const RECURRING_ROUTES_SCHEDULES = self::MAIN_HOST . "/recurring-routes/schedules";
51
+	const RECURRING_ROUTES_SCHEDULES_PAGINATION = self::MAIN_HOST . "/recurring-routes/schedules/pagination";
52
+	const RECURRING_ROUTES_ROUTE_SCHEDULES = self::MAIN_HOST . "/recurring-routes/route-schedules";
53
+	const RECURRING_ROUTES_ROUTE_SCHEDULES_PAGINATION =
54
+		self::MAIN_HOST . "/recurring-routes/route-schedules/pagination";
55
+	const RECURRING_ROUTES_ROUTE_SCHEDULES_REPLACE = self::MAIN_HOST . "/recurring-routes/route-schedules/replace";
56
+	const RECURRING_ROUTES_SCHEDULED_ROUTES_IS_COPY = self::MAIN_HOST . "/recurring-routes/scheduled-routes/is-copy";
57
+	const RECURRING_ROUTES_SCHEDULED_ROUTES_GET_COPIES =
58
+		self::MAIN_HOST . "/recurring-routes/scheduled-routes/get-copies";
59
+	const RECURRING_ROUTES_MASTER_ROUTES = self::MAIN_HOST . "/recurring-routes/master-routes";
60
+
61
+	// </editor-fold>
62 62
  
63
-    // <editor-fold defaultstate="collapsed" desc="Telematicx Platform">
63
+	// <editor-fold defaultstate="collapsed" desc="Telematicx Platform">
64 64
     
65
-    const STAGING_HOST = "https://virtserver.swaggerhub.com/Route4Me/telematics-gateway/1.0.0";
65
+	const STAGING_HOST = "https://virtserver.swaggerhub.com/Route4Me/telematics-gateway/1.0.0";
66 66
 
67
-    const TELEMATICS_CONNECTION = self::STAGING_HOST."/connections";
68
-    const TELEMATICS_CONNECTION_VEHICLES = self::STAGING_HOST . "/connections/{connection_token}/vehicles";
67
+	const TELEMATICS_CONNECTION = self::STAGING_HOST."/connections";
68
+	const TELEMATICS_CONNECTION_VEHICLES = self::STAGING_HOST . "/connections/{connection_token}/vehicles";
69 69
 
70
-    const TELEMATICS_ACCESS_TOKEN = self::STAGING_HOST . "/access-tokens";
71
-    const TELEMATICS_ACCESS_TOKEN_SCHEDULES = self::STAGING_HOST . "/access-token-schedules";
72
-    const TELEMATICS_ACCESS_TOKEN_SCHEDULE_ITEMS = self::STAGING_HOST . "/access-token-schedules/{schedule_id}/items";
70
+	const TELEMATICS_ACCESS_TOKEN = self::STAGING_HOST . "/access-tokens";
71
+	const TELEMATICS_ACCESS_TOKEN_SCHEDULES = self::STAGING_HOST . "/access-token-schedules";
72
+	const TELEMATICS_ACCESS_TOKEN_SCHEDULE_ITEMS = self::STAGING_HOST . "/access-token-schedules/{schedule_id}/items";
73 73
 
74
-    const TELEMATICS_VEHICLE_GROUPS = self::STAGING_HOST . "/vehicle-groups";
75
-    const TELEMATICS_VEHICLE_GROUPS_RELATION = self::STAGING_HOST . "/vehicle-groups/{vehicle_group_id}/{relation}";
76
-    const TELEMATICS_VEHICLES_RESLATION = self::STAGING_HOST . "/vehicles/{vehicle_id}/{relation}";
74
+	const TELEMATICS_VEHICLE_GROUPS = self::STAGING_HOST . "/vehicle-groups";
75
+	const TELEMATICS_VEHICLE_GROUPS_RELATION = self::STAGING_HOST . "/vehicle-groups/{vehicle_group_id}/{relation}";
76
+	const TELEMATICS_VEHICLES_RESLATION = self::STAGING_HOST . "/vehicles/{vehicle_id}/{relation}";
77 77
 
78
-    const TELEMATICS_INFO_MEMBERS = self::STAGING_HOST . "/info/members";
79
-    const TELEMATICS_INFO_VEHICLES = self::STAGING_HOST . "/info/vehicles";
80
-    const TELEMATICS_INFO_VEHICLE = self::STAGING_HOST . "/info/vehicle/{vehicle_id}/track";
81
-    const TELEMATICS_INFO_MODULES = self::STAGING_HOST . "/info/members";
78
+	const TELEMATICS_INFO_MEMBERS = self::STAGING_HOST . "/info/members";
79
+	const TELEMATICS_INFO_VEHICLES = self::STAGING_HOST . "/info/vehicles";
80
+	const TELEMATICS_INFO_VEHICLE = self::STAGING_HOST . "/info/vehicle/{vehicle_id}/track";
81
+	const TELEMATICS_INFO_MODULES = self::STAGING_HOST . "/info/members";
82 82
 
83
-    const TELEMATICS_ADDRESSES = self::STAGING_HOST . "/addresses";
83
+	const TELEMATICS_ADDRESSES = self::STAGING_HOST . "/addresses";
84 84
 
85
-    const TELEMATICS_Errors = self::STAGING_HOST . "/errors";
85
+	const TELEMATICS_Errors = self::STAGING_HOST . "/errors";
86 86
 
87
-    const TELEMATICS_CUSTOMER_NOTIFICATIONS = self::STAGING_HOST . "​/customers​/{customer_id}​/notifications​";
88
-    const TELEMATICS_CUSTOMERS = self::STAGING_HOST . "/customers";
89
-    const TELEMATICS_CUSTOMER_ID = self::STAGING_HOST . "/customers/{customer_id}";
87
+	const TELEMATICS_CUSTOMER_NOTIFICATIONS = self::STAGING_HOST . "​/customers​/{customer_id}​/notifications​";
88
+	const TELEMATICS_CUSTOMERS = self::STAGING_HOST . "/customers";
89
+	const TELEMATICS_CUSTOMER_ID = self::STAGING_HOST . "/customers/{customer_id}";
90 90
 
91
-    const TELEMATICS_NOTIFICATION_SCHEDULE_ITEMS = self::STAGING_HOST . "/notification-schedules/{notification_schedule_id}/items";
92
-    const TELEMATICS_NOTIFICATION_SCHEDULES = self::STAGING_HOST . "/notification-schedules";
93
-    const TELEMATICS_NOTIFICATION_SCHEDULE_IS = self::STAGING_HOST . "/notification-schedules/{schedule_id}";
94
-    const TELEMATICS_ONETIME_NOTIFICATIONS = self::STAGING_HOST . "​/one-time-notifications";
91
+	const TELEMATICS_NOTIFICATION_SCHEDULE_ITEMS = self::STAGING_HOST . "/notification-schedules/{notification_schedule_id}/items";
92
+	const TELEMATICS_NOTIFICATION_SCHEDULES = self::STAGING_HOST . "/notification-schedules";
93
+	const TELEMATICS_NOTIFICATION_SCHEDULE_IS = self::STAGING_HOST . "/notification-schedules/{schedule_id}";
94
+	const TELEMATICS_ONETIME_NOTIFICATIONS = self::STAGING_HOST . "​/one-time-notifications";
95 95
 
96
-    const TELEMATICS_MEMBER = self::STAGING_HOST;
96
+	const TELEMATICS_MEMBER = self::STAGING_HOST;
97 97
 
98
-    const TELEMATICS_MEMBER_MODULES = self::STAGING_HOST . "​/user-activated-modules";
98
+	const TELEMATICS_MEMBER_MODULES = self::STAGING_HOST . "​/user-activated-modules";
99 99
 
100
-    const TELEMATICS_MEMBER_MODULE_ID = self::STAGING_HOST . "​/user-activated-modules/{module_id}";
101
-    const TELEMATICS_MEMBER_MODULE_VEHICLES = self::STAGING_HOST . "​​/user-activated-modules​/{module_id}​/vehicles";
102
-    const TELEMATICS_MEMBER_MODULE_VEHICLE_ID = self::STAGING_HOST . "​​​/user-activated-modules​/{module_id}​/vehicles​/{vehicle_id}";
100
+	const TELEMATICS_MEMBER_MODULE_ID = self::STAGING_HOST . "​/user-activated-modules/{module_id}";
101
+	const TELEMATICS_MEMBER_MODULE_VEHICLES = self::STAGING_HOST . "​​/user-activated-modules​/{module_id}​/vehicles";
102
+	const TELEMATICS_MEMBER_MODULE_VEHICLE_ID = self::STAGING_HOST . "​​​/user-activated-modules​/{module_id}​/vehicles​/{vehicle_id}";
103 103
 
104
-    const TELEMATICS_VENDORS = self::STAGING_HOST . "​/vendors";
105
-    const TELEMATICS_VENDOR_ID = self::STAGING_HOST . "​​/vendors​/{vendor_id}";
104
+	const TELEMATICS_VENDORS = self::STAGING_HOST . "​/vendors";
105
+	const TELEMATICS_VENDOR_ID = self::STAGING_HOST . "​​/vendors​/{vendor_id}";
106 106
     
107
-    // </editor-fold>
108
-
109
-    const ADDRESSES = self::MAIN_HOST . "/address-book/addresses";
110
-    const ADDRESSES_BATCH_CREATE = self::MAIN_HOST . "/address-book/addresses/batch-create";
111
-    const ADDRESSES_INDEX_ALL = self::MAIN_HOST . "/address-book/addresses/index/all";
112
-    const ADDRESSES_INDEX_PAGINATION = self::MAIN_HOST . "/address-book/addresses/index/pagination";
113
-    const ADDRESSES_INDEX_CLUSTERING = self::MAIN_HOST . "/address-book/addresses/index/clustering";
114
-    const ADDRESSES_SHOW = self::MAIN_HOST . "/address-book/addresses/show";
115
-    const ADDRESSES_BATCH_UPDATE = self::MAIN_HOST . "/address-book/addresses/batch-update";
116
-    const ADDRESSES_UPDATE_BY_AREAS = self::MAIN_HOST . "/address-book/addresses/update-by-areas";
117
-    const ADDRESSES_DELETE = self::MAIN_HOST . "/address-book/addresses/delete";
118
-    const ADDRESSES_DELETE_BY_AREAS = self::MAIN_HOST . "/address-book/addresses/delete-by-areas";
119
-    const ADDRESSES_CUSTOM_FIELDS = self::MAIN_HOST . "/address-book/addresses/custom-fields";
120
-    const ADDRESSES_DEPOTS = self::MAIN_HOST . "/address-book/addresses/depots";
121
-    const ADDRESSES_EXPORT = self::MAIN_HOST . "/address-book/addresses/export";
122
-    const ADDRESSES_EXPORT_BY_AREAS = self::MAIN_HOST . "/address-book/addresses/export-by-areas";
123
-    const ADDRESSES_EXPORT_BY_AREA_IDS = self::MAIN_HOST . "/address-book/addresses/export-by-area-ids";
124
-    const ADDRESSES_JOB_TRACKER_STATUS = self::MAIN_HOST . "/address-book/addresses/job-tracker/status";
125
-    const ADDRESSES_JOB_TRACKER_RESULT = self::MAIN_HOST . "/address-book/addresses/job-tracker/result";
107
+	// </editor-fold>
108
+
109
+	const ADDRESSES = self::MAIN_HOST . "/address-book/addresses";
110
+	const ADDRESSES_BATCH_CREATE = self::MAIN_HOST . "/address-book/addresses/batch-create";
111
+	const ADDRESSES_INDEX_ALL = self::MAIN_HOST . "/address-book/addresses/index/all";
112
+	const ADDRESSES_INDEX_PAGINATION = self::MAIN_HOST . "/address-book/addresses/index/pagination";
113
+	const ADDRESSES_INDEX_CLUSTERING = self::MAIN_HOST . "/address-book/addresses/index/clustering";
114
+	const ADDRESSES_SHOW = self::MAIN_HOST . "/address-book/addresses/show";
115
+	const ADDRESSES_BATCH_UPDATE = self::MAIN_HOST . "/address-book/addresses/batch-update";
116
+	const ADDRESSES_UPDATE_BY_AREAS = self::MAIN_HOST . "/address-book/addresses/update-by-areas";
117
+	const ADDRESSES_DELETE = self::MAIN_HOST . "/address-book/addresses/delete";
118
+	const ADDRESSES_DELETE_BY_AREAS = self::MAIN_HOST . "/address-book/addresses/delete-by-areas";
119
+	const ADDRESSES_CUSTOM_FIELDS = self::MAIN_HOST . "/address-book/addresses/custom-fields";
120
+	const ADDRESSES_DEPOTS = self::MAIN_HOST . "/address-book/addresses/depots";
121
+	const ADDRESSES_EXPORT = self::MAIN_HOST . "/address-book/addresses/export";
122
+	const ADDRESSES_EXPORT_BY_AREAS = self::MAIN_HOST . "/address-book/addresses/export-by-areas";
123
+	const ADDRESSES_EXPORT_BY_AREA_IDS = self::MAIN_HOST . "/address-book/addresses/export-by-area-ids";
124
+	const ADDRESSES_JOB_TRACKER_STATUS = self::MAIN_HOST . "/address-book/addresses/job-tracker/status";
125
+	const ADDRESSES_JOB_TRACKER_RESULT = self::MAIN_HOST . "/address-book/addresses/job-tracker/result";
126 126
 }
Please login to merge, or discard this patch.
Spacing   +75 added lines, -75 removed lines patch added patch discarded remove patch
@@ -12,51 +12,51 @@  discard block
 block discarded – undo
12 12
 
13 13
     // <editor-fold defaultstate="collapsed" desc="region Routes">
14 14
 
15
-    const Routes = self::MAIN_HOST . "/routes";
16
-    const RoutesDuplicate = self::MAIN_HOST . "/routes/duplicate";
17
-    const RoutesMerge = self::MAIN_HOST . "/routes/merge";
18
-    const RoutesPaginate = self::MAIN_HOST . "/routes/paginate";
19
-    const RoutesFallbackPaginate = self::MAIN_HOST . "/routes/fallback/paginate";
20
-    const RoutesFallbackDatatable = self::MAIN_HOST . "/routes/fallback/datatable";
21
-    const RoutesFallback = self::MAIN_HOST . "/routes/fallback";
22
-    const RoutesReindexCallback = self::MAIN_HOST . "/routes/reindex-callback";
23
-    const RoutesDatatable = self::MAIN_HOST . "/routes/datatable";
24
-    const RoutesDatatableConfig = self::MAIN_HOST . "/routes/datatable/config";
25
-    const RoutesDatatableConfigFallback = self::MAIN_HOST . "/routes/fallback/datatable/config";
15
+    const Routes = self::MAIN_HOST."/routes";
16
+    const RoutesDuplicate = self::MAIN_HOST."/routes/duplicate";
17
+    const RoutesMerge = self::MAIN_HOST."/routes/merge";
18
+    const RoutesPaginate = self::MAIN_HOST."/routes/paginate";
19
+    const RoutesFallbackPaginate = self::MAIN_HOST."/routes/fallback/paginate";
20
+    const RoutesFallbackDatatable = self::MAIN_HOST."/routes/fallback/datatable";
21
+    const RoutesFallback = self::MAIN_HOST."/routes/fallback";
22
+    const RoutesReindexCallback = self::MAIN_HOST."/routes/reindex-callback";
23
+    const RoutesDatatable = self::MAIN_HOST."/routes/datatable";
24
+    const RoutesDatatableConfig = self::MAIN_HOST."/routes/datatable/config";
25
+    const RoutesDatatableConfigFallback = self::MAIN_HOST."/routes/fallback/datatable/config";
26 26
 
27 27
     // </editor-fold>
28 28
 
29 29
     // <editor-fold defaultstate="collapsed" desc="Team Users">
30 30
 
31
-    const TEAM_USERS = self::MAIN_HOST . "/team/users";
32
-    const TEAM_USERS_BULK_INSERT = self::MAIN_HOST . "/team/bulk-insert";
33
-    const DriverReview = self::MAIN_HOST . "/driver-reviews";
31
+    const TEAM_USERS = self::MAIN_HOST."/team/users";
32
+    const TEAM_USERS_BULK_INSERT = self::MAIN_HOST."/team/bulk-insert";
33
+    const DriverReview = self::MAIN_HOST."/driver-reviews";
34 34
 
35 35
     // </editor-fold>
36 36
     
37
-    const ACCOUNT_PROFILE = self::MAIN_HOST . "/profile-api";
37
+    const ACCOUNT_PROFILE = self::MAIN_HOST."/profile-api";
38 38
 
39 39
     // <editor-fold defaultstate="collapsed" desc="Vehicles">
40 40
 
41
-    const Vehicles = self::MAIN_HOST . "/vehicles";
42
-    const VehicleTemporary = self::MAIN_HOST . "/vehicles/assign";
43
-    const VehicleExecuteOrder = self::MAIN_HOST . "/vehicles/execute";
44
-    const VehicleLocation = self::MAIN_HOST . "/vehicles/location";
45
-    const VehicleProfiles = self::MAIN_HOST . "/vehicle-profiles";
46
-    const VehicleLicense = self::MAIN_HOST . "/vehicles/license";
47
-    const VehicleSearch = self::MAIN_HOST . "/vehicles/search";
48
-
49
-    const RECURRING_ROUTES = self::MAIN_HOST . "/recurring-routes";
50
-    const RECURRING_ROUTES_SCHEDULES = self::MAIN_HOST . "/recurring-routes/schedules";
51
-    const RECURRING_ROUTES_SCHEDULES_PAGINATION = self::MAIN_HOST . "/recurring-routes/schedules/pagination";
52
-    const RECURRING_ROUTES_ROUTE_SCHEDULES = self::MAIN_HOST . "/recurring-routes/route-schedules";
41
+    const Vehicles = self::MAIN_HOST."/vehicles";
42
+    const VehicleTemporary = self::MAIN_HOST."/vehicles/assign";
43
+    const VehicleExecuteOrder = self::MAIN_HOST."/vehicles/execute";
44
+    const VehicleLocation = self::MAIN_HOST."/vehicles/location";
45
+    const VehicleProfiles = self::MAIN_HOST."/vehicle-profiles";
46
+    const VehicleLicense = self::MAIN_HOST."/vehicles/license";
47
+    const VehicleSearch = self::MAIN_HOST."/vehicles/search";
48
+
49
+    const RECURRING_ROUTES = self::MAIN_HOST."/recurring-routes";
50
+    const RECURRING_ROUTES_SCHEDULES = self::MAIN_HOST."/recurring-routes/schedules";
51
+    const RECURRING_ROUTES_SCHEDULES_PAGINATION = self::MAIN_HOST."/recurring-routes/schedules/pagination";
52
+    const RECURRING_ROUTES_ROUTE_SCHEDULES = self::MAIN_HOST."/recurring-routes/route-schedules";
53 53
     const RECURRING_ROUTES_ROUTE_SCHEDULES_PAGINATION =
54
-        self::MAIN_HOST . "/recurring-routes/route-schedules/pagination";
55
-    const RECURRING_ROUTES_ROUTE_SCHEDULES_REPLACE = self::MAIN_HOST . "/recurring-routes/route-schedules/replace";
56
-    const RECURRING_ROUTES_SCHEDULED_ROUTES_IS_COPY = self::MAIN_HOST . "/recurring-routes/scheduled-routes/is-copy";
54
+        self::MAIN_HOST."/recurring-routes/route-schedules/pagination";
55
+    const RECURRING_ROUTES_ROUTE_SCHEDULES_REPLACE = self::MAIN_HOST."/recurring-routes/route-schedules/replace";
56
+    const RECURRING_ROUTES_SCHEDULED_ROUTES_IS_COPY = self::MAIN_HOST."/recurring-routes/scheduled-routes/is-copy";
57 57
     const RECURRING_ROUTES_SCHEDULED_ROUTES_GET_COPIES =
58
-        self::MAIN_HOST . "/recurring-routes/scheduled-routes/get-copies";
59
-    const RECURRING_ROUTES_MASTER_ROUTES = self::MAIN_HOST . "/recurring-routes/master-routes";
58
+        self::MAIN_HOST."/recurring-routes/scheduled-routes/get-copies";
59
+    const RECURRING_ROUTES_MASTER_ROUTES = self::MAIN_HOST."/recurring-routes/master-routes";
60 60
 
61 61
     // </editor-fold>
62 62
  
@@ -65,62 +65,62 @@  discard block
 block discarded – undo
65 65
     const STAGING_HOST = "https://virtserver.swaggerhub.com/Route4Me/telematics-gateway/1.0.0";
66 66
 
67 67
     const TELEMATICS_CONNECTION = self::STAGING_HOST."/connections";
68
-    const TELEMATICS_CONNECTION_VEHICLES = self::STAGING_HOST . "/connections/{connection_token}/vehicles";
68
+    const TELEMATICS_CONNECTION_VEHICLES = self::STAGING_HOST."/connections/{connection_token}/vehicles";
69 69
 
70
-    const TELEMATICS_ACCESS_TOKEN = self::STAGING_HOST . "/access-tokens";
71
-    const TELEMATICS_ACCESS_TOKEN_SCHEDULES = self::STAGING_HOST . "/access-token-schedules";
72
-    const TELEMATICS_ACCESS_TOKEN_SCHEDULE_ITEMS = self::STAGING_HOST . "/access-token-schedules/{schedule_id}/items";
70
+    const TELEMATICS_ACCESS_TOKEN = self::STAGING_HOST."/access-tokens";
71
+    const TELEMATICS_ACCESS_TOKEN_SCHEDULES = self::STAGING_HOST."/access-token-schedules";
72
+    const TELEMATICS_ACCESS_TOKEN_SCHEDULE_ITEMS = self::STAGING_HOST."/access-token-schedules/{schedule_id}/items";
73 73
 
74
-    const TELEMATICS_VEHICLE_GROUPS = self::STAGING_HOST . "/vehicle-groups";
75
-    const TELEMATICS_VEHICLE_GROUPS_RELATION = self::STAGING_HOST . "/vehicle-groups/{vehicle_group_id}/{relation}";
76
-    const TELEMATICS_VEHICLES_RESLATION = self::STAGING_HOST . "/vehicles/{vehicle_id}/{relation}";
74
+    const TELEMATICS_VEHICLE_GROUPS = self::STAGING_HOST."/vehicle-groups";
75
+    const TELEMATICS_VEHICLE_GROUPS_RELATION = self::STAGING_HOST."/vehicle-groups/{vehicle_group_id}/{relation}";
76
+    const TELEMATICS_VEHICLES_RESLATION = self::STAGING_HOST."/vehicles/{vehicle_id}/{relation}";
77 77
 
78
-    const TELEMATICS_INFO_MEMBERS = self::STAGING_HOST . "/info/members";
79
-    const TELEMATICS_INFO_VEHICLES = self::STAGING_HOST . "/info/vehicles";
80
-    const TELEMATICS_INFO_VEHICLE = self::STAGING_HOST . "/info/vehicle/{vehicle_id}/track";
81
-    const TELEMATICS_INFO_MODULES = self::STAGING_HOST . "/info/members";
78
+    const TELEMATICS_INFO_MEMBERS = self::STAGING_HOST."/info/members";
79
+    const TELEMATICS_INFO_VEHICLES = self::STAGING_HOST."/info/vehicles";
80
+    const TELEMATICS_INFO_VEHICLE = self::STAGING_HOST."/info/vehicle/{vehicle_id}/track";
81
+    const TELEMATICS_INFO_MODULES = self::STAGING_HOST."/info/members";
82 82
 
83
-    const TELEMATICS_ADDRESSES = self::STAGING_HOST . "/addresses";
83
+    const TELEMATICS_ADDRESSES = self::STAGING_HOST."/addresses";
84 84
 
85
-    const TELEMATICS_Errors = self::STAGING_HOST . "/errors";
85
+    const TELEMATICS_Errors = self::STAGING_HOST."/errors";
86 86
 
87
-    const TELEMATICS_CUSTOMER_NOTIFICATIONS = self::STAGING_HOST . "​/customers​/{customer_id}​/notifications​";
88
-    const TELEMATICS_CUSTOMERS = self::STAGING_HOST . "/customers";
89
-    const TELEMATICS_CUSTOMER_ID = self::STAGING_HOST . "/customers/{customer_id}";
87
+    const TELEMATICS_CUSTOMER_NOTIFICATIONS = self::STAGING_HOST."​/customers​/{customer_id}​/notifications​";
88
+    const TELEMATICS_CUSTOMERS = self::STAGING_HOST."/customers";
89
+    const TELEMATICS_CUSTOMER_ID = self::STAGING_HOST."/customers/{customer_id}";
90 90
 
91
-    const TELEMATICS_NOTIFICATION_SCHEDULE_ITEMS = self::STAGING_HOST . "/notification-schedules/{notification_schedule_id}/items";
92
-    const TELEMATICS_NOTIFICATION_SCHEDULES = self::STAGING_HOST . "/notification-schedules";
93
-    const TELEMATICS_NOTIFICATION_SCHEDULE_IS = self::STAGING_HOST . "/notification-schedules/{schedule_id}";
94
-    const TELEMATICS_ONETIME_NOTIFICATIONS = self::STAGING_HOST . "​/one-time-notifications";
91
+    const TELEMATICS_NOTIFICATION_SCHEDULE_ITEMS = self::STAGING_HOST."/notification-schedules/{notification_schedule_id}/items";
92
+    const TELEMATICS_NOTIFICATION_SCHEDULES = self::STAGING_HOST."/notification-schedules";
93
+    const TELEMATICS_NOTIFICATION_SCHEDULE_IS = self::STAGING_HOST."/notification-schedules/{schedule_id}";
94
+    const TELEMATICS_ONETIME_NOTIFICATIONS = self::STAGING_HOST."​/one-time-notifications";
95 95
 
96 96
     const TELEMATICS_MEMBER = self::STAGING_HOST;
97 97
 
98
-    const TELEMATICS_MEMBER_MODULES = self::STAGING_HOST . "​/user-activated-modules";
98
+    const TELEMATICS_MEMBER_MODULES = self::STAGING_HOST."​/user-activated-modules";
99 99
 
100
-    const TELEMATICS_MEMBER_MODULE_ID = self::STAGING_HOST . "​/user-activated-modules/{module_id}";
101
-    const TELEMATICS_MEMBER_MODULE_VEHICLES = self::STAGING_HOST . "​​/user-activated-modules​/{module_id}​/vehicles";
102
-    const TELEMATICS_MEMBER_MODULE_VEHICLE_ID = self::STAGING_HOST . "​​​/user-activated-modules​/{module_id}​/vehicles​/{vehicle_id}";
100
+    const TELEMATICS_MEMBER_MODULE_ID = self::STAGING_HOST."​/user-activated-modules/{module_id}";
101
+    const TELEMATICS_MEMBER_MODULE_VEHICLES = self::STAGING_HOST."​​/user-activated-modules​/{module_id}​/vehicles";
102
+    const TELEMATICS_MEMBER_MODULE_VEHICLE_ID = self::STAGING_HOST."​​​/user-activated-modules​/{module_id}​/vehicles​/{vehicle_id}";
103 103
 
104
-    const TELEMATICS_VENDORS = self::STAGING_HOST . "​/vendors";
105
-    const TELEMATICS_VENDOR_ID = self::STAGING_HOST . "​​/vendors​/{vendor_id}";
104
+    const TELEMATICS_VENDORS = self::STAGING_HOST."​/vendors";
105
+    const TELEMATICS_VENDOR_ID = self::STAGING_HOST."​​/vendors​/{vendor_id}";
106 106
     
107 107
     // </editor-fold>
108 108
 
109
-    const ADDRESSES = self::MAIN_HOST . "/address-book/addresses";
110
-    const ADDRESSES_BATCH_CREATE = self::MAIN_HOST . "/address-book/addresses/batch-create";
111
-    const ADDRESSES_INDEX_ALL = self::MAIN_HOST . "/address-book/addresses/index/all";
112
-    const ADDRESSES_INDEX_PAGINATION = self::MAIN_HOST . "/address-book/addresses/index/pagination";
113
-    const ADDRESSES_INDEX_CLUSTERING = self::MAIN_HOST . "/address-book/addresses/index/clustering";
114
-    const ADDRESSES_SHOW = self::MAIN_HOST . "/address-book/addresses/show";
115
-    const ADDRESSES_BATCH_UPDATE = self::MAIN_HOST . "/address-book/addresses/batch-update";
116
-    const ADDRESSES_UPDATE_BY_AREAS = self::MAIN_HOST . "/address-book/addresses/update-by-areas";
117
-    const ADDRESSES_DELETE = self::MAIN_HOST . "/address-book/addresses/delete";
118
-    const ADDRESSES_DELETE_BY_AREAS = self::MAIN_HOST . "/address-book/addresses/delete-by-areas";
119
-    const ADDRESSES_CUSTOM_FIELDS = self::MAIN_HOST . "/address-book/addresses/custom-fields";
120
-    const ADDRESSES_DEPOTS = self::MAIN_HOST . "/address-book/addresses/depots";
121
-    const ADDRESSES_EXPORT = self::MAIN_HOST . "/address-book/addresses/export";
122
-    const ADDRESSES_EXPORT_BY_AREAS = self::MAIN_HOST . "/address-book/addresses/export-by-areas";
123
-    const ADDRESSES_EXPORT_BY_AREA_IDS = self::MAIN_HOST . "/address-book/addresses/export-by-area-ids";
124
-    const ADDRESSES_JOB_TRACKER_STATUS = self::MAIN_HOST . "/address-book/addresses/job-tracker/status";
125
-    const ADDRESSES_JOB_TRACKER_RESULT = self::MAIN_HOST . "/address-book/addresses/job-tracker/result";
109
+    const ADDRESSES = self::MAIN_HOST."/address-book/addresses";
110
+    const ADDRESSES_BATCH_CREATE = self::MAIN_HOST."/address-book/addresses/batch-create";
111
+    const ADDRESSES_INDEX_ALL = self::MAIN_HOST."/address-book/addresses/index/all";
112
+    const ADDRESSES_INDEX_PAGINATION = self::MAIN_HOST."/address-book/addresses/index/pagination";
113
+    const ADDRESSES_INDEX_CLUSTERING = self::MAIN_HOST."/address-book/addresses/index/clustering";
114
+    const ADDRESSES_SHOW = self::MAIN_HOST."/address-book/addresses/show";
115
+    const ADDRESSES_BATCH_UPDATE = self::MAIN_HOST."/address-book/addresses/batch-update";
116
+    const ADDRESSES_UPDATE_BY_AREAS = self::MAIN_HOST."/address-book/addresses/update-by-areas";
117
+    const ADDRESSES_DELETE = self::MAIN_HOST."/address-book/addresses/delete";
118
+    const ADDRESSES_DELETE_BY_AREAS = self::MAIN_HOST."/address-book/addresses/delete-by-areas";
119
+    const ADDRESSES_CUSTOM_FIELDS = self::MAIN_HOST."/address-book/addresses/custom-fields";
120
+    const ADDRESSES_DEPOTS = self::MAIN_HOST."/address-book/addresses/depots";
121
+    const ADDRESSES_EXPORT = self::MAIN_HOST."/address-book/addresses/export";
122
+    const ADDRESSES_EXPORT_BY_AREAS = self::MAIN_HOST."/address-book/addresses/export-by-areas";
123
+    const ADDRESSES_EXPORT_BY_AREA_IDS = self::MAIN_HOST."/address-book/addresses/export-by-area-ids";
124
+    const ADDRESSES_JOB_TRACKER_STATUS = self::MAIN_HOST."/address-book/addresses/job-tracker/status";
125
+    const ADDRESSES_JOB_TRACKER_RESULT = self::MAIN_HOST."/address-book/addresses/job-tracker/result";
126 126
 }
Please login to merge, or discard this patch.