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.
Completed
Pull Request — master (#2)
by
unknown
07:12
created
examples/Order/OrderSearchScheduledDate.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 	
4 4
 	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6
-    require $vdir.'/../vendor/autoload.php';
6
+	require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9 9
 	use Route4Me\Order;
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 	// Set the api key in the Route4me class
14 14
 	Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 	
16
-	$orderParameters=Order::fromArray(array(
16
+	$orderParameters = Order::fromArray(array(
17 17
 		"scheduled_for_YYMMDD"	=> "2016-06-16"
18 18
 	));
19 19
 
Please login to merge, or discard this patch.
examples/Order/OrderSearchInsertedDate.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 	// Set the api key in the Route4me class
14 14
 	Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 	
16
-	$orderParameters=Order::fromArray(array(
16
+	$orderParameters = Order::fromArray(array(
17 17
 		"day_added_YYMMDD"	=> "2016-06-15"
18 18
 	));
19 19
 
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 	
4 4
 	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6
-    require $vdir.'/../vendor/autoload.php';
6
+	require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9 9
 	use Route4Me\Order;
Please login to merge, or discard this patch.
examples/Order/RemoveOrder.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 	
4 4
 	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6
-    require $vdir.'/../vendor/autoload.php';
6
+	require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9 9
 	use Route4Me\Order;
@@ -16,8 +16,8 @@  discard block
 block discarded – undo
16 16
 	
17 17
 	$orderParameters=Order::fromArray(array(
18 18
 		'order_ids' => array (
19
-		    0 => 73,
20
-		    1 => 74,
19
+			0 => 73,
20
+			1 => 74,
21 21
 		  )
22 22
 	));
23 23
 	
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -14,8 +14,8 @@  discard block
 block discarded – undo
14 14
 	Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 	
16 16
 	
17
-	$orderParameters=Order::fromArray(array(
18
-		'order_ids' => array (
17
+	$orderParameters = Order::fromArray(array(
18
+		'order_ids' => array(
19 19
 		    0 => 73,
20 20
 		    1 => 74,
21 21
 		  )
Please login to merge, or discard this patch.
examples/Order/AddOrder2Optimization.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 	// Set the api key in the Route4me class
14 14
 	Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 	
16
-	$orderParameters=Order::fromArray(array(
16
+	$orderParameters = Order::fromArray(array(
17 17
 		"optimization_problem_id"	=> "E0883C1A2C7B3AAA9397BDDF90C9CFF8",
18 18
 		"redirect"	=> 0,
19 19
 	));
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
 
25 25
 	$order = new Order();
26 26
 	
27
-	$response = $order->addOrder2Destination($orderParameters,$body);
27
+	$response = $order->addOrder2Destination($orderParameters, $body);
28 28
 	
29 29
 	Route4Me::simplePrint($response);
30 30
 ?>
31 31
\ No newline at end of file
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 	
4 4
 	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6
-    require $vdir.'/../vendor/autoload.php';
6
+	require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9 9
 	use Route4Me\Order;
Please login to merge, or discard this patch.
examples/Order/OrderSearchText.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 	// Set the api key in the Route4me class
14 14
 	Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 	
16
-	$orderParameters=Order::fromArray(array(
16
+	$orderParameters = Order::fromArray(array(
17 17
 		"query"  => "David"
18 18
 	));
19 19
 
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 	
4 4
 	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6
-    require $vdir.'/../vendor/autoload.php';
6
+	require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9 9
 	use Route4Me\Order;
Please login to merge, or discard this patch.
examples/Order/OrderSearchCustomFields.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 	// Set the api key in the Route4me class
14 14
 	Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 	
16
-	$orderParameters=Order::fromArray(array(
16
+	$orderParameters = Order::fromArray(array(
17 17
 		"fields"  => "order_id,member_id"
18 18
 	));
19 19
 
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 	
4 4
 	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6
-    require $vdir.'/../vendor/autoload.php';
6
+	require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9 9
 	use Route4Me\Order;
Please login to merge, or discard this patch.
examples/Order/NewOrder.php 2 patches
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@  discard block
 block discarded – undo
3 3
 	
4 4
 	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6
-    require $vdir.'/../vendor/autoload.php';
6
+	require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9 9
 	use Route4Me\Order;
@@ -25,10 +25,10 @@  discard block
 block discarded – undo
25 25
 		"EXT_FIELD_phone"		=> "380380380380",
26 26
 		"EXT_FIELD_custom_data"		=> array(
27 27
 			0 => 
28
-		    array(
29
-		       'order_id' => '10',
30
-		       'name' => 'Bill Soul',
31
-		    )
28
+			array(
29
+			   'order_id' => '10',
30
+			   'name' => 'Bill Soul',
31
+			)
32 32
 		)
33 33
 	));
34 34
 	
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 	// Set the api key in the Route4me class
14 14
 	Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 	
16
-	$orderParameters=Order::fromArray(array(
16
+	$orderParameters = Order::fromArray(array(
17 17
 		"address_1"	=> "1358 E Luzerne St, Philadelphia, PA 19124, US",
18 18
 		"cached_lat"	=> 48.335991,
19 19
 		"cached_lng"	=> 31.18287,
Please login to merge, or discard this patch.
examples/Order/GetOrder.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 	Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 	
16 16
 	
17
-	$orderParameters=Order::fromArray(array(
17
+	$orderParameters = Order::fromArray(array(
18 18
 		"order_id"	=> 78
19 19
 	));
20 20
 
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 	
4 4
 	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6
-    require $vdir.'/../vendor/autoload.php';
6
+	require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9 9
 	use Route4Me\Order;
Please login to merge, or discard this patch.
examples/Order/AddOrder2Route.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 	namespace Route4Me;
3 3
 	
4
-	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
4
+	$vdir = $_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6 6
     require $vdir.'/../vendor/autoload.php';
7 7
 	
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 	Route4Me::setApiKey('11111111111111111111111111111111');
15 15
 	
16 16
 	
17
-	$orderParameters=Order::fromArray(array(
17
+	$orderParameters = Order::fromArray(array(
18 18
 		"route_id"	=> "28DAE34FE8341C30CA58726E10B6F8E9",
19 19
 		"redirect"	=> 0,
20 20
 	));
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
 
26 26
 	$order = new Order();
27 27
 	
28
-	$response = $order->addOrder2Route($orderParameters,$body);
28
+	$response = $order->addOrder2Route($orderParameters, $body);
29 29
 	
30 30
 	Route4Me::simplePrint($response);
31 31
 ?>
32 32
\ No newline at end of file
Please login to merge, or discard this patch.
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,7 +3,7 @@
 block discarded – undo
3 3
 	
4 4
 	$vdir=$_SERVER['DOCUMENT_ROOT'].'/route4me/examples/';
5 5
 
6
-    require $vdir.'/../vendor/autoload.php';
6
+	require $vdir.'/../vendor/autoload.php';
7 7
 	
8 8
 	use Route4Me\Route4Me;
9 9
 	use Route4Me\Order;
Please login to merge, or discard this patch.