Skip to content

Commit 816cf60

Browse files
committedJan 4, 2019
Add more missing closing tags, references #198
1 parent bc75a92 commit 816cf60

9 files changed

+9
-0
lines changed
 

‎php/emit_log.php

+1
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,4 @@
2121

2222
$channel->close();
2323
$connection->close();
24+
?>

‎php/emit_log_direct.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@
2424

2525
$channel->close();
2626
$connection->close();
27+
?>

‎php/new_task.php

+1
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,4 @@
2424

2525
$channel->close();
2626
$connection->close();
27+
?>

‎php/receive_logs.php

+1
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@
2626

2727
$channel->close();
2828
$connection->close();
29+
?>

‎php/receive_logs_direct.php

+1
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@
3434

3535
$channel->close();
3636
$connection->close();
37+
?>

‎php/receive_logs_topic.php

+1
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@
3434

3535
$channel->close();
3636
$connection->close();
37+
?>

‎php/rpc_client.php

+1
Original file line numberDiff line numberDiff line change
@@ -72,3 +72,4 @@ public function call($n)
7272
$fibonacci_rpc = new FibonacciRpcClient();
7373
$response = $fibonacci_rpc->call(30);
7474
echo ' [.] Got ', $response, "\n";
75+
?>

‎php/rpc_server.php

+1
Original file line numberDiff line numberDiff line change
@@ -49,3 +49,4 @@ function fib($n)
4949

5050
$channel->close();
5151
$connection->close();
52+
?>

‎php/worker.php

+1
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,4 @@
2626

2727
$channel->close();
2828
$connection->close();
29+
?>

0 commit comments

Comments
 (0)
Please sign in to comment.