Skip to content

Commit d0542c3

Browse files
WalterHubTakashi Matsuo
authored andcommitted
Adds newline to output statement (GoogleCloudPlatform#207)
1 parent d987602 commit d0542c3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datastore/quickstart/quickstart.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,6 @@
3030
# Saves the entity
3131
$datastore->upsert($task);
3232

33-
echo 'Saved ' . $task->key() . ': ' . $task['description'];
33+
echo 'Saved ' . $task->key() . ': ' . $task['description'] . PHP_EOL;
3434
# [END datastore_quickstart]
3535
return $task;

0 commit comments

Comments
 (0)